I have the following scenario. I have a skin file that determines default settings for RadGrids in my project. One of the settings is this:
<ClientSettings> |
<Selecting AllowRowSelect="False" /> |
<Resizing AllowRowResize="False" /> |
</ClientSettings> |
On one of my pages I need to allow selecting rows on a RadGrid.
Just setting the AllowRowSelect to true doesn't seem to do the trick and the settings from the skin file seems to trump the local settings on the Grid.
How do I allow selecting rows on a RadGrid in my solution without having to change the default setting in the skin file?
Can the "!important" keyword be used somehow?
This questions seems very trivial to me, yet I'm unable to find an answer.
Any help is appreciated.