Language: vb.net
I'm having a really difficult time getting changes to cell values displayed in a radGrid.
The grid is bound to a dataset containing the output of a SQL Server stored procedure that returns a list of documents.
In addition to the columns that are mapped to particular elements in the dataset (docName, docLocation), I also display a column (status) that is not mapped.
Here's what I want to do: At runtime, after the grid has been populated, displayed, and the end user has selected several of the rows, I would like to traverse the SelectedRows collection of my grid, set the "status" column value to "S", and have these updated values displayed in the grid:
For Each row As GridViewRowInfo In dgEquiset.SelectedRows
cell = row.Cells("selected")
cell.Value = "selected"
Next
I don't get any errors, but the values don't get set.
How do I go about doing this properly?
Thanks!
this.radPanelBarGroupElement2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
this.radPanelBarGroupElement2.Image = global::MyApp.Properties.Resources.open;
this.radPanelBarGroupElement2.Text = "Folders";
I added the following line to try to get the PanelBar to recognize the transparent color
((Telerik.WinControls.Primitives.ImagePrimitive)(this.radPanelBarGroupElement2.GetChildAt(0).GetChildAt(0).GetChildAt(0).GetChildAt(0).GetChildAt(0).GetChildAt(1).GetChildAt(0))).TransparentColor = System.Drawing.Color.Fuchsia;
I also tried setting the TransparentColor of the ImagePrimitive to
System.Drawing.Color.Transparent
but that didn't work either. Please let me know how to do this.
Thanks,
John Q.