is it possible to set default values within the web.config file for specific controls?
Perhaps the direction I am headed is incorrect, but I don't see another way to deal with this other than stepping very very deep into the skin files themselves, which I don't really want to do.
for eg. It is possible to set the skin using
but is is also possible the to default settings like AllowRowSelect for the R.A.D. grid?
ie
<add key="Telerik.Radgrid.ClientSettings.Selecting.AllowRowSelect" value="True"/>
Wondering if I am perhaps going about this wrong. I tried using a standard .skin file in my theme folder, but kept getting Unknown server Tag 'telerik:RadGrid'.
This was the skin I was attempting to use.
thanks for your time and effort. the controls are really quite fantastic.
mac
Perhaps the direction I am headed is incorrect, but I don't see another way to deal with this other than stepping very very deep into the skin files themselves, which I don't really want to do.
for eg. It is possible to set the skin using
<appSettings> |
<add key="Telerik.Skin" value="Vista" /> |
</appSettings> |
but is is also possible the to default settings like AllowRowSelect for the R.A.D. grid?
ie
<add key="Telerik.Radgrid.ClientSettings.Selecting.AllowRowSelect" value="True"/>
Wondering if I am perhaps going about this wrong. I tried using a standard .skin file in my theme folder, but kept getting Unknown server Tag 'telerik:RadGrid'.
This was the skin I was attempting to use.
<telerik:RadGrid Width="100%" SkinId="Postings" runat="server" |
GridLines="None" BackColor="gold" AllowPaging="True"> |
<MasterTableView AutoGenerateColumns="False"> |
<PagerStyle Mode="NextPrevAndNumeric" /> |
<RowIndicatorColumn Visible="False"> |
<HeaderStyle Width="20px" /> |
</RowIndicatorColumn> |
<ExpandCollapseColumn Resizable="False" Visible="False"> |
<HeaderStyle Width="20px" /> |
</ExpandCollapseColumn> |
<EditFormSettings> |
<PopUpSettings ScrollBars="None" /> |
</EditFormSettings> |
</MasterTableView> |
<ClientSettings Selecting-AllowRowSelect="true"> |
</ClientSettings> |
</telerik:RadGrid> |
mac