Hi There
I have a radgrid control, Skin is Vista Multi edit row is set to true and i load the control in edit mode.
When the cotrol load with edit mode all the rows are highlighted in blue so i set EditItemStyle-BackColor="White"
and now the grid is not highlighted in blue. But now the editem item load with blue border around. I tried some properties to remove as i don't want the border to show. Can you please direct me to the right property to do so
Thanks
Tony
I have a radgrid control, Skin is Vista Multi edit row is set to true and i load the control in edit mode.
For Each item As GridItem In radResourceLists.MasterTableView.Items
If TypeOf item Is GridEditableItem Then
Dim editableItem As GridEditableItem = CType(item, GridDataItem)
editableItem.Edit =
True
editableItem.BorderStyle = BorderStyle.None
End If
Next
When the cotrol load with edit mode all the rows are highlighted in blue so i set EditItemStyle-BackColor="White"
and now the grid is not highlighted in blue. But now the editem item load with blue border around. I tried some properties to remove as i don't want the border to show. Can you please direct me to the right property to do so
Thanks
Tony