This question is locked. New answers and comments are not allowed.
Hello, I"m using the Telerik menu and the datePicker in the same page.
I would like to use the forest theme for the menu and the windows7 theme for the date picker. But there is only one theme selected per page. Maybe I'm misusing the theme method, but I didn't found any example on how to use it. I tried with a simpler project, and two datepicker, and I'm having the same problem.
Here is my code.
In site.master, declaration of my themes
In site.master, registration of scripts:
in aspx page:
I would like to use the forest theme for the menu and the windows7 theme for the date picker. But there is only one theme selected per page. Maybe I'm misusing the theme method, but I didn't found any example on how to use it. I tried with a simpler project, and two datepicker, and I'm having the same problem.
Here is my code.
In site.master, declaration of my themes
<%= Html.Telerik().StyleSheetRegistrar().DefaultGroup(Function(group) group.Add("telerik.common.min.css").Add("telerik.windows7.min.css").Add("telerik.forest.min.css"))%>In site.master, registration of scripts:
<%= Html.Telerik().ScriptRegistrar()%>in aspx page:
<%: Html.Telerik().DatePicker().Name("DateNaissance").Theme("windows7")%>
<%: Html.Telerik().DatePicker().Name("DateNaissance2").Theme("forest")%>
Do you have any tips for me, or if it's a known problem?
Thank you