<
telerik:RadNotification
ID
=
"RadNotification1"
runat
=
"server"
ContentIcon
=
"../../Images/Notification/check_48.png"
Position
=
"Center"
AutoCloseDelay
=
"15000"
Width
=
"600"
Height
=
"250px"
Pinned
=
"true"
EnableRoundedCorners
=
"true"
EnableShadow
=
"true"
KeepOnMouseOver
=
"true"
VisibleTitlebar
=
"true"
ShowCloseButton
=
"true"
Animation
=
"Fade"
AnimationDuration
=
"200"
Skin
=
"Web20"
TitleIcon
=
"../../Images/Notification/check_16.png"
>
<
ContentTemplate
>
<
telerik:RadGrid
ID
=
"RadGrid1"
runat
=
"server"
AutoGenerateColumns
=
"false"
OnItemDataBound
=
"gvDesignazione_ItemDataBound"
>
<
MasterTableView
>
<
Columns
>
<
telerik:GridTemplateColumn
>
<
ItemTemplate
>
<%# Eval("INFOBASE")%>
</
ItemTemplate
>
</
telerik:GridTemplateColumn
>
<
telerik:GridTemplateColumn
>
<
ItemTemplate
>
<
telerik:RadComboBox
ID
=
"ddlDesignazione"
runat
=
"server"
Skin
=
"Office2010Blue"
Width
=
"180px"
ZIndex
=
"1000"
>
</
telerik:RadComboBox
>
</
ItemTemplate
>
</
telerik:GridTemplateColumn
>
</
Columns
>
</
MasterTableView
>
</
telerik:RadGrid
>
</
ContentTemplate
>
</
telerik:RadNotification
>
I have an ASP page whose tree control I am try to replace with the Telerik TreeList. On the page I have buttons to increase or decrease the font size of all the detail items. I am looking to vary the font size from eight to sixteen in steps of one. This means that I would have to read the current font size and then increment or decrement the font size. The changes should be made client side if possible. Can someone get me going in the right direction?
<
telerik:GridBoundColumn
DataField
=
"Id"
Display
=
"False"
Visible
=
"false"
FilterControlAltText
=
"Filter column column"
UniqueName
=
"column"
>
</
telerik:GridBoundColumn
>
We have implemented telerik TABs Load On Demand method. We have added RadTabStrip in main usercontrol ( TopTab.ascx ). For each pageview of tab strip, we have added separate usercontrols and set RadAjaxManager property EnabledAjax="true"
We are facing problem as javascript functions and validations written on usercontrols of child tabs are not getting rendered.
Below is our page structure
Master Page > Client.aspx > TopTab.ascx ( user control ) > RadTabStrip ( RadTabStrip contains multiple tabs)
Out Of these multiple tabs we have sub tabs in 2 Tabs. For each of these sub tabs including main tabs, we have usercontrols.
Please suggest for rendering javascripts which are part of child / sub tabs used in our scenario.
Regards,
Sunil