Hi,
Is it possible to grey out the edit and delete images in the grid?
I have this code to disable one button:
But the image is still bright so users tries to click on it!
The same should happen if the grid is completely disabled:
Then everything is grey out except for the images.
/Mattias
Is it possible to grey out the edit and delete images in the grid?
I have this code to disable one button:
| ImageButton delButton = gridItem["DeleteColumn"].Controls[0] as ImageButton; |
| delButton.Enabled = false; |
But the image is still bright so users tries to click on it!
The same should happen if the grid is completely disabled:
| RadGrid1.Enabled = false; |
Then everything is grey out except for the images.
/Mattias
