Problem with the slider control

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • yovalk
    New Member
    • Apr 2007
    • 15

    #1

    Problem with the slider control

    I am not sure if this fits here or in the ajax forum, but I thought it is more related to asp.net.

    When I place the ajax slider control in the page, the slider does not seem to be in line with the bound textbox.
    Here is the code:
    <asp:TextBoxID= "rowsText"runat ="server">16 </asp:TextBox> <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
    <ajaxToolkit:Sl iderExtender ID="rowsExtende r" runat="server" Minimum="2"
    TargetControlID ="rowsText" BoundControlID= "Label1" EnableHandleAni mation="True" Length="100" Maximum="30">
    </ajaxToolkit:Sli derExtender>

    Anyone had this problem before?
    Thanks,
    Yuval
  • Plater
    Recognized Expert Expert
    • Apr 2007
    • 7872

    #2
    is it slightly lower then the other object?
    Try removing your line-break in your aspx code.
    It seems silly, but I think I recall having trouble with line-breaks in the aspx file being converted to html line-breaks before.

    If all else fails, can you align them with css?

    Comment

    Working...