| Thread | Last Post | Replies |
|
| Displaying Headertext of datagrid in vertical Direction | 10 Aug 2006 11:50 GMT | 1 |
I have a problem formatting my datagrid which I am using to display around 35 columns in one single aspx page and wanted to know how can I tilt or rotate my headertext of datagrid in veritical direction instead of usually horizontal directions. Is there any other way to squeeze my
|
| how to set focus on an edititem in a gridview | 10 Aug 2006 11:49 GMT | 1 |
I have a gridview with an edititem template that contains a textbox. When I change to edit mode, I would like the focus to be set to the textbox of the row I selected to edit. The problem I have is that even though the page is displayed correctly, I need to scroll down to find ...
|
| Gridview RenderControl | 08 Aug 2006 19:56 GMT | 1 |
I need to capture the HTML output from a Gridview control....so I am executing the following code... StringBuilder sb = new StringBuilder(); StringWriter sw = new StringWriter(sb);
|
| SortCommend event is being fired twice | 08 Aug 2006 13:40 GMT | 1 |
Hi Group, In my application I am using a datagrid, now I m implementing sorting for that datagrid, I am changing the flag for ascending and descending when SortCommand
|
| Controls In DataGrid? | 07 Aug 2006 02:01 GMT | 1 |
Consider the following code which retrieves data from a SQL Server 2005 DB table & displays it in a DataGrid: <script runat="server"> Sub Page_Load(ByVal obj As Object, ByVal ea As EventArgs)
|
| Display an Access Memo field in a GridView or DetailsView | 06 Aug 2006 16:22 GMT | 3 |
Hi, I am trying to display a memo field in a grid in. I have tried with the GridView and DetailsView, but it's treated as text field. Is it possible to display and edit a memo field in a grid or DetailsView? I am using VS .net 2005. Many thanks
|
| Get value if invisible | 03 Aug 2006 21:03 GMT | 3 |
I'm using the asp:gridview control for displaying the data from SQL Server. Now, I've found that if the column is invisible "<asp:BoundField DataField="some_id" HeaderText="some_id" SortExpression="some_id" Visible="false"/>", I cannot get the value from
|
| GridView date format problem | 01 Aug 2006 19:18 GMT | 2 |
I have a GridView in a user control that has its datasource assigned dynamically. It's working well, however, date values are displaying mm/dd/yyyy hh:mm:ss and I only want a short date format. I don't know which column will hold a date prior to runtime. Is there any way to
|
| Set column width in the datagrid in the ItemdataBound event | 01 Aug 2006 12:39 GMT | 1 |
I want to set the column in the datagrid in the ItemDataBound event e.Item.Cells[0].Width = new Unit("100px"); is not working. Please suggest alternate solution
|