| Thread | Last Post | Replies |
|
| change value of textbox in datagrid | 31 Jan 2006 05:24 GMT | 2 |
new to vb.net, have a few questions about DataGrid. I have a dataGrid that is working pulling a dataset back from a stored proc and binding to the datagrid for display the datagrid's first column is a textbox(TemplateColumn), the other 3
|
| Unbound Datagrid . . . Add Button to end of columns | 31 Jan 2006 02:52 GMT | 1 |
I have an unbound datagrid that is being filled dynamically from a dataset. I need to add a couple of buttons at the end of each row. I can do this easily if the datagrid is bound, as I then have a list of columns that I can move around in the datagrid control properties. ...
|
| datagrid date format | 29 Jan 2006 17:26 GMT | 2 |
I have some data returned from SQL server in a dataset and bound to a datagrid control. I am having trouble formatting a datatime field. Sometimes the data stored in this field is just a date, and sometimes there is a time as well:
|
| .Net Gridview | 28 Jan 2006 17:56 GMT | 2 |
This is my second post on this issue, really didn't get much of response the first time. Anyway, after playing around with gridView column widths my conclusion is this. Essentially, you don't have direct control of how the gridview will display your column widths. Doesn't ...
|
| Programmatic access to TemplateColumn? | 27 Jan 2006 05:43 GMT | 3 |
i have a datagrid w/ a TemplateColumn in it, like so: <asp:TemplateColumn HeaderText="Select"> <ItemTemplate> <asp:CheckBox ID="chkSelected" Runat="server"/>
|
| Datagrid refresh | 25 Jan 2006 18:29 GMT | 3 |
When I load new data in a datagrid and when I try to export this data to excel it exports the previous data that was in the datagrid. I have no idea why this is so. below is the sequence of code
|
| column borders css | 25 Jan 2006 17:54 GMT | 2 |
i am trying to get rid of the column borders on my datagrid using an external css file. does anyone know how to do that? I've got my BoundColumns CssClass set to allcols which is... .allcols
|
| Javascript in DataGrid's TEMPLATECOLUMN | 25 Jan 2006 17:33 GMT | 1 |
I've learned how to add javascript to a web control in .NET using the ".Attributes.Add" method. example: MYBUTTON.Attributes.add("onClick", "blablafunction")
|
| Control of columns | 22 Jan 2006 12:09 GMT | 3 |
I have a grid using Auto generated columns. How do I control the columns, set columns to invisible, for example. After the grid is bound to data, I tried dg.Columns(0).visible = false and I get an error. If I step through it and, for instance, do a count of the columns, it ...
|
| Datagrid SortCommand event does not fire. | 20 Jan 2006 18:27 GMT | 3 |
I have a Datagrid on my .aspx page and the sortcommand event does no fire. Following is the code. Can somene please let me know what I a missing.
|
| How does a nested datagrid reference parent row in master datagrid? | 19 Jan 2006 21:54 GMT | 2 |
I have a nested datagrid in each row of a master datagrid. The nested grid has full functionality of inline edits. How do I reference the datakey collection of the master datagrid passing the proper collection index? For example, if someone clicks 'edit' or 'update' link in the ...
|
| No "bordercolorlight" or "bordercolordark" table attributes with DataGrid ?? | 19 Jan 2006 15:28 GMT | 3 |
I'm trying to get the same look and feel from a new ASPX page that I have in some older ASPs. They run side-by-side in a website. How do I get the <asp:DataGrid> to write the "bordercolordark" and "bordercolorlight" table attributes that I'm accustomed to using?
|
| How do you delete a column/datacell from a datarow? | 19 Jan 2006 01:30 GMT | 3 |
I am creating a new row as follows: Dim drBlankRow As DataRow = ds.Tables(0).NewRow I would like to delete the first cell/column of this row and insert a different cell/column
|
| DataGrid disappears when clicking on "Edit" link | 18 Jan 2006 14:56 GMT | 2 |
My DataGrid disappears when clicking on the "Edit" link. The DataGrid accesses a sql server database. I tried this some time agon using VWD Express and didnt have a problem, now I'm using VS2K5 and I'm getting this. I can't seem to figure it out, I've tried several diferent
|
| objectdatasource custom paging SelectCount method | 18 Jan 2006 12:02 GMT | 5 |
I'm trying to implement custom paging in a VS 2005 readonly GridView binding to an ObjectDataSource control. I added the extra maximumRows and startRowIndex parameters to my Select method. The Select method had 3 parameters before I added the paging parameters. I added another ...
|