| Thread | Last Post | Replies |
|
| Hyperlink columns in DataGrid With AutoGenerateColums set to True | 11 Jan 2005 03:03 GMT | 1 |
I have a datagrid with AutoGenerateColums property set to True, i want to make these columns as hyperlinks, so that when user clinks on i can show the detailed report.
|
| Click on sort link on a datagrid opens new window | 10 Jan 2005 16:41 GMT | 4 |
I have a modal dialog displaying a datagrid control. Click on the column header to sort the datagrid opens a new window with the following in the location: javascript:__doPostBack('dgDataGrid$_ctl1$_ctl1','')
|
| Insert row in DataGrid | 10 Jan 2005 03:58 GMT | 1 |
I would like to know how to insert a row into a datagrid? i allready know how to edit, delete and update a row (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon/html /vbwlkWalkthroughUsingDataGridWebControlToReadWriteData.asp)
|
| Load a datagrid with data NOT from a database.... | 08 Jan 2005 17:06 GMT | 5 |
Howdy, I need to load a datagrid with some data not being pulled from a database. Basically, here's the functionality: The datagrid columns include: part no, description, and qty. I need to load two rows into this datagrid the first time a user hits the page. Then, give the user ...
|
| multitable datagrid update | 08 Jan 2005 01:27 GMT | 5 |
I have a datagrid which has a dataset as it's datasource. The dataset contains a join of a few tables. In only want to update one of the tables in this join. how can i do this?
|
| Accessing data from C# code-behind in the ItemDataBound Event | 07 Jan 2005 15:34 GMT | 2 |
If I want to access a particular column of data that is bound to a datagrid from within the ItemDataBound Event, how would I do that? I am trying to construct a NavigationURL on the fly based on multiple fields. I am creating a URL with multiple parameters....
|
| BoundColumn does not contain a definition for databinding | 07 Jan 2005 15:30 GMT | 3 |
I am trying to get a datagrid working, but it seems to have a problem with databinding in a boundcolumn. The error message I get is 'BoundColumn does not contain a definition for databinding'. Here is my code:
|
| mouseover effect | 07 Jan 2005 08:13 GMT | 1 |
I want to create a mouseover effect which colors the row when the mousepointer goes over a row. I use this code in the itemDataBound event If e.Item.ItemType = ListItemType.Item Or e.Item.ItemType = ListItemType.AlternatingItem Then
|
| SelectedIndex of Dropdownlist in Datagrid | 07 Jan 2005 03:01 GMT | 1 |
I am going to using a editable datagrid, one of the field should be a dropdownlist, here is my code <EditItemTemplate> <asp:DropDownList
|
| dropdownmenu in datagrid | 06 Jan 2005 17:10 GMT | 2 |
how do I set the dropdownmenu's default value to the item in the editable datagrid?
|
| How can I format a number column in a datagrid | 06 Jan 2005 14:37 GMT | 4 |
I tried <asp:BoundColumn DataField="Logins" HeaderText="Logins" DataFormatString="{#,##.0}"></asp:BoundColumn> But it blows up.
|
| right align a number column in a datagrid | 06 Jan 2005 13:51 GMT | 3 |
How can right align a number column in a datagrid?
|
| htmlinputtext inside asp template column cannot access value in update event | 06 Jan 2005 03:41 GMT | 1 |
My problem is tat i hav a datagrid with a template column as <asp:TemplateColumn HeaderText="Stk"> <ItemTemplate> <%# DataBinder.Eval(Container.DataItem, "Stk")%>
|
| update command does not fire when adding row | 05 Jan 2005 18:43 GMT | 2 |
I have built a grid dynamically, and with edit, delete and bound columns. I can edit the records in the grid with no problem; when you click on Edit, the column changes to Update & Cancel, enter your changes and click update, and the datagrid update command fires.
|
| update a datagrid through dataset | 05 Jan 2005 17:59 GMT | 4 |
I have a datagrid which has a dataset as it's datasource. In order to send an update to the database how do i get all the updates the user made on the datagrid in the dataset? in other words : what is the smartest way of 'updating' a datagrid
|