Hi guys,
This might sound like a silly question, but I'd like have an area inside the Notification window
that is only going to use a specific area as it will align with a background image. The background
image will be like a notepad and all the content and control will appear inside it, if that makes any
sense... Cheers!!
<
telerik:RadNotification runat="server" ID="radNotificationPopup" VisibleOnPageLoad="true"
Width="340px" Height="420px" EnableRoundedCorners="true" BackColor="#FFFFFF" ForeColor="#FFFFFF" Skin="Windows7"
OnCallbackUpdate="radNotificationPopup_CallbackUpdate" LoadContentOn="PageLoad" BorderWidth="0px" VisibleTitlebar="true"
Position="Center" Animation="Fade" EnableShadow="false" Title="don't forget to..." ShowTitleMenu="false"
OffsetX="0" AutoCloseDelay="0" ContentIcon="">
<
NotificationMenu ID="TitleMenu"></NotificationMenu>
<ContentTemplate>
<div style="margin: 0px 0px 0px 0px; border: 0px 0px 0px 0px; background-color: #FFFFFF;">
<asp:HyperLink ID="lnkToDo" NavigateUrl="Events.aspx" runat="server" Text="don't forget to...">
<div class="userImg">
<img id="img" src="../Images/todolist.png" alt="don't forget to..." />
</div>
</asp:HyperLink>
</div>
</ContentTemplate>
</telerik:RadNotification>
var dtp=$find('<%=dtp%>');dtp.OnDateSelected = this.dtpFrom_DateSelected;<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?
