Ask a Question related to ASP.NET Data Grid Control, Design and Development.
-
steve #1
Get value from datagrid cell OnSelectedIndexChange
I figured out the solution:
Public Sub RecordPercentDone(ByVal sender As Object, ByVal
e As System.EventArgs)
Dim ed As DropDownList = CType(sender, DropDownList)
Dim myDatGridItem As DataGridItem = CType
(ed.Parent.Parent, DataGridItem)
Dim projDetailID As String = myDatGridItem.Cells(0).Text
Dim PercentComplete As String = ed.SelectedItem.Text
Do Update......
end sub
steve Guest
-
DataGrid: How do I select and copy text for a DataGrid cell?
Hi, Do you know how do I select and copy txt from a cell inside a Flex 2 DataGrid? I don't want to use an itemRenderer. I will appreciate... -
DataGrid cell editing
I have set my DataGrid as editable and some column editable and others not. For some reason some cells blank out when I edit the cell contents... -
How to set cell background based on cell value when datagrid is displayed
I would like to check a datagrid cell value, and change the color of the cell background, when a datagrid is displayed. I want to do this as early... -
RadioButtonList In A DataGrid Cell - Can I find the selected button without editing the cell?
I have an ASP.NET form with a DataGrid and Button. I want to put a RadioButtonList in a DataGrid cell. I bind it to an ArrayList which has a... -
Get value from datagrid DDL cell OnSelectedIndexChange
I have a dropdownlist in a column of my datagrid. When the user changes the value in the ddl, I want to fire off OnSelectedIndexChange event and...



Reply With Quote

