<script type="text/javascript"> $(function() { // Dialog $('#dialog').dialog({ autoOpen: false, resizable: false, width: 400 }); }); </script> ... <div id="dialog" title="Pharmacist's Comments" class="modal"> <telerik:RadEditor ID="RadEditor1" runat="server" Width="100%" Height="300" > </telerik:RadEditor> <asp:TextBox runat="server" ID="txtTest1" /> </div> |
Hi Team,
when i am changing value in font size drop down the selected value in font name drop down is changes automatically to default.
here i am unable to predict the selected font name.
i am using 2012 version of telerik.web.ui.dll
could you please help me out.
Regards,
Rushyendra.
Hi,
I have a Rad Scheduler in TimeLine View. It aligns well on the page load, but when we add, delete or edit appointments, the scheduler rebinds and rsVerticalHeaderWrapper div misaligns with rsContentWrapper div.
The first image shows the scheduler as aligned on PageLoad.
I deleted the appointment "remove block" and the scheduler rebinds which now misaligned the Scheduler as shown in the second image.
Please suggest.
Thanks in Advance.
I am utilizing Kendo 2016.3.1028, and on my webpage I need to use som tools that utilize an older version of jquery than kendo is utilizing.
I import the older version of Jquery through a partial view, which also contains the code for the other tools.
Once I import the older jquery version, however, my kendo objects, stop working.
My my treeview dataItems apparantly stop existing, and my tabPages stop switching etc.
Is there a way to make my kendo objects "survive" the importation of another, older version of Jquery?
My header tag:
1.
<
header
>
2.
<
link
type
=
"text/css"
rel
=
"stylesheet"
href
=
"../Css/bootstrap.min.css"
/>
3.
<
link
type
=
"text/css"
rel
=
"stylesheet"
href
=
"../Css/font-awesome.min.css"
/>
4.
<
link
type
=
"text/css"
rel
=
"stylesheet"
href
=
"../Css/StyleSheet.css"
/>
5.
<
link
type
=
"text/css"
rel
=
"stylesheet"
href
=
"<%=Configuration.GetSetting("
BrandingUrl") %>" />
6.
</
header
>
When I enable CDN in web.config, Telerik css files are added between lines 5 and 6, However I need line 5 (My branding file containing some Telerik overrides) to be the last line.
I tried using the RadStyleSheetManager which provides ordering capabilities but since lines 2 and 3 are actually fully qualified URLs, I could not find a way to combine URLs and static files using the control.
How would I be able to achieve this short of adding each [RadControl].css file I use in my Webform application.