I have a masterpage with a single content page that dynamically loads usercontrols for content.
In the masterpage I have a combobox that allows selection of a skin. That selection simply sets the appSettings Telerik.Skin value and things are ... almost OK.
At the end of the event cycle the form was only partially updated. F5 fixed it. So to force a refresh I just modified as follows:
I haven't seen that pattern. Is that the right way to do it?
I was going to use the RadPageStylist.Skin (that class is defined in the RadControlsAjaxCourseware and was provided by Vladimir Enchev) but it looks like this functionality is now built into the RadControls rendering process.
Is there some current documentation on exactly what's required in the current release?
Thanks.
In the masterpage I have a combobox that allows selection of a skin. That selection simply sets the appSettings Telerik.Skin value and things are ... almost OK.
At the end of the event cycle the form was only partially updated. F5 fixed it. So to force a refresh I just modified as follows:
| protected void cmbSiteTheme_SelectedIndexChanged( |
| object o , |
| Telerik.Web.UI.RadComboBoxSelectedIndexChangedEventArgs e ) |
| { |
| ConfigurationManager.AppSettings.Set("Telerik.Skin" , e.Value); |
| Response.Redirect(this.Request.Url.ToString()); |
| } |
I was going to use the RadPageStylist.Skin (that class is defined in the RadControlsAjaxCourseware and was provided by Vladimir Enchev) but it looks like this functionality is now built into the RadControls rendering process.
Is there some current documentation on exactly what's required in the current release?
Thanks.