or
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" %><telerik:RadAjaxPanel ID="pnlChangePassword" runat="server" DefaultButton="btnChange" LoadingPanelID="ralMain"> <div class="box" style="width: 445px;"> <fieldset> <asp:Label ID="lblOldPassword" AssociatedControlID="txbOldPassword" runat="server" Text="<%$ Resources: Common, OldPassword_label %>" /> <asp:TextBox ID="txbOldPassword" TextMode="Password" runat="server" MaxLength="100" /> </fieldset> <fieldset> <asp:Label ID="lblPassword" AssociatedControlID="txbPassword" runat="server" Text="<%$ Resources: Common, NewPassword_label %>" /> <asp:TextBox ID="txbPassword" TextMode="Password" runat="server" MaxLength="100" /> </fieldset> <fieldset> <asp:Label ID="lblConfirmPassword" AssociatedControlID="txbConfirmPassword" runat="server" Text="<%$ Resources: Common, NewPasswordConfirm_label %>" /> <asp:TextBox ID="txbConfirmPassword" TextMode="Password" runat="server" MaxLength="100" /> </fieldset> </div> <div> <asp:Button ID="btnChange" runat="server" CssClass="button" Text="<%$ Resources: Common, ChangePassword_button %>" OnClick="HandlerButtonOnClick" /> </div></telerik:RadAjaxPanel> <script type="text/javascript"> //<![CDATA[ function CloseWin() { $find('<%= changePasswordWindow.ClientID %>').close(); } function OpenWin() { $find('<%= changePasswordWindow.ClientID %>').show(); } //]]></script><telerik:RadWindow ID="changePasswordWindow" Title="<%$ Resources: Common, ChangeYourPassword_title %>" runat="server" Modal="true" Behavior="Close" EnableShadow="true" Width="530px" Height="300px" VisibleStatusbar="false"> <ContentTemplate> <div style="margin: 10px;"> <ref:ChangePassword ID="changePassword" runat="server" /> </div> <asp:LinkButton ID="btnBack" runat="server" Text="<%$ Resources: Common, Close_label %>" CausesValidation="false" OnClientClick="CloseWin();return false;" /> </ContentTemplate></telerik:RadWindow><asp:Button ID="btnChange" runat="server" CssClass="button" Text="<%$ Resources: Common, ChangePassword_button %>" CausesValidation="false" OnClientClick="OpenWin();return false;" /><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title></title> <style type="text/css"> div.RadComboBox_Default table .rcbInputCell, div.RadComboBox_Default table .rcbArrowCell { background-color: red; height: 11px; line-height: 10px; padding: 0; } div.RadComboBox_Default table .rcbInputCell input { height: 11px; line-height: 10px; font:10px arial,verdana,sans-serif; height: 11px; padding: 0; } .rcbInput { height: 11px !important; } </style> </head><body> <form id="form1" runat="server"> <div> <telerik:RadScriptManager ID="RadScriptManager1" runat="server"> </telerik:RadScriptManager> <telerik:RadComboBox ID="RadComboBox1" runat="server" > <Items> <telerik:RadComboBoxItem text="12345" /> <telerik:RadComboBoxItem text="12345" /> <telerik:RadComboBoxItem text="12345" /> <telerik:RadComboBoxItem text="12345" /> <telerik:RadComboBoxItem text="12345" /> <telerik:RadComboBoxItem text="12345" /> </Items> </telerik:RadComboBox> <telerik:RadTextBox ID="RadTextBox1" runat="server" Height="11px"></telerik:RadTextBox> <br/> <br/> <br/> <telerik:RadComboBox ID="RadComboBox2" runat="server" EnableEmbeddedSkins="false" > <Items> <telerik:RadComboBoxItem text="12345" /> <telerik:RadComboBoxItem text="12345" /> <telerik:RadComboBoxItem text="12345" /> <telerik:RadComboBoxItem text="12345" /> <telerik:RadComboBoxItem text="12345" /> <telerik:RadComboBoxItem text="12345" /> </Items> </telerik:RadComboBox> <telerik:RadTextBox ID="RadTextBox2" runat="server" Height="11px"></telerik:RadTextBox> </div> </form> </body></html><Telerik:RadScriptManager ID="RadScriptManager1" runat="server"></Telerik:RadScriptManager><Telerik:RadEditor ID="RadEditorProductDetails" runat="server" EditModes="Design, Html" Skin="Windows7"> <Tools> <Telerik:EditorToolGroup> <Telerik:EditorTool Name="FontName" /> <Telerik:EditorTool Name="FontSize" /> <Telerik:EditorTool Name="RealFontSize" /> </Telerik:EditorToolGroup> </Tools> <Content> </Content></Telerik:RadEditor>
|
<telerik:RadToolTipManager ID="rttmFLC" OffsetX="1" Width="400" Height="400" HideEvent="LeaveToolTip" runat="server" OnAjaxUpdate="OnAjaxUpdate" RelativeTo="Element" Position="MiddleRight" ContentScrolling="Auto"> </telerik:RadToolTipManager>ContentTemplateContainer.Controls collection, as well as adding a user control with an image in it. Both ways, no horizontal scrollbar. I have also tried to set the ToolTipManager ContentScrolling to "Both" instead of "Auto". Again no, horizontal scrollbar. For the time being, I can set the image width to 100%, so that the entire image width is seen in the tooltip. However, this will obviously make it so the image doesn't appear as it actually is, but rather as a "thumbnail" of sorts. Any idea why I can't get the horizontal scrollbar to show up?
<telerik:GridTemplateColumn UniqueName="ExamplePriceArea" ReadOnly="True" HeaderText="ExamplePrice"> <ItemTemplate> <asp:Label ID="PriceLabel" runat="server" Text='<%# Eval("Price", "{0:C}") %>'></asp:Label> </ItemTemplate> </telerik:GridTemplateColumn>