I just converted one of my grids from a DataGridView to the RadGridView and have a feature that no longer works.
The user is required to enter at least one row in the grid. If the user does not enter at least one row, we add an error icon to the grid itself (NOT a row or cell). With a DataGridView, it then appeared on the righ side of the grid. With the RadGridView, it does not appear.
Here is the line of code:
The user is required to enter at least one row in the grid. If the user does not enter at least one row, we add an error icon to the grid itself (NOT a row or cell). With a DataGridView, it then appeared on the righ side of the grid. With the RadGridView, it does not appear.
Here is the line of code:
ErrorProvider1.SetError(radgridview1,
"This is a test")
Any ideas how to make this work?
Thanks!