I have created asp web page with asp panel as bellow
<asp:Panel ID="pnl" runat="server" ScrollBars="Horizontal">
</asp:Panel>
In IE Browser(8,9,10) it will always enable vertical scroll bars but Firefox is only show horizontal scroll bar.
In here I need only Horizontal scroll bars how to solve this problem?
try this. It's a HTML 5 property so it may work in modern browsers.
<asp:Panel ID="pnl" runat="server" style="overflow-x:scroll;">
Related
Image button tooltip is showing as text in chrome
<asp:ImageButton ID="btnHelp" runat="server" AlternateText="" ToolTip="Help" />
Here Help is showing as a text.
The closest I can get to the correct behavior is by setting AlternateText to a space:
<asp:ImageButton ID="btnHelp" runat="server" AlternateText=" " ToolTip="Help" />
By the way, the behavior in Firefox is even more interesting: when AlternateText is empty, some text is displayed but I have no idea where it comes from. As is the case for Chrome, setting AlternateText to a space solves the problem.
The problem is that the website is very wide. A horizontal scroll bar is added and the width of the page becomes like 10000. The problem happens once I use treeview if the page style is RTL.
If I change the page to LTR or if I remove the treeview, the problem disappears.
Can anyone help?
set this property for treeview
SkipLinkText=""
<asp:TreeView ID="TreeView1" runat="server" SkipLinkText="">
</asp:TreeView>
Hello, I have two tables inside the panel of modalpopupextender.
I want size of the panel to be fixed whether or not both tables are visible inside the modalpopup.
You can do this like as
<asp:Panel ID="pnlAddEdit" runat="server" CssClass="modalPopup" style = "display:none;min-width:20px;min-height:20px">
</asp:Panel>
I have a telerik RadTextBox, in which i want to display one line, the problem the content is a little bit scrolling and don't display all the text, how can i fix it. thanks in advance.
try to use textmode="singleline"
<telerik:RadTextBox runat="server" ID="txtbox1" TextMode="SingleLine"></telerik:RadTextBox>
Referring to Menu / Scrolling Example
I would like to create / find the same functionality for a vertical menu. I tried the following.
<asp:Menu ID="menuAccountMembers" runat="server" StaticSubMenuIndent="16px"
Visible="true" RenderingMode="Table"
ScrollDownImageUrl="~/Resources/scrolldown.jpg"
ScrollUpImageUrl="~/Resources/scrollup.jpg">
<Items>
But it doesnt display any scrolling images. I am using .net 4.0
Tried setting menuAccountMembers.RenderingCompatibility = new Version(3, 5); as well.
If there a property to only display the first 5 root menu items, then show scroll bars for the rest? It can be click-able, no need to hover over to show next item.
Found the Jcarousel sufficient