Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
775
Minor UI Issues
posted

1 - What property do you need to set to get the WebSlider to display the midpoint value like is shown in the sample in the help file?

2 - Is there a way to have the slider show a value for each mark on it?

3 - When you use the WebSlider in a vertical orientation there's a minor UI Issue. The thumb slider partially overwrites the minimum value field. To duplicate paste the following code into a web form and view the page:

<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>

<div>

<cc1:WebSlider Height="300" Width="125" Orientation="vertical" MaxValue="100" MinValue="0" ID="WebSlider2" runat="server">

</cc1:WebSlider>

</div>

 

Parents
  • 24497
    posted

    Hi,

    Currently available version of slider does not have option to move trackbar to center. You can "move" trackbar to center by enabling both tickmarks.
    Release version will have ContentAlignment property and one of enums will be TrackCenter.

    Number of tickmark labels is defined by Tickmarks.NumberOfLabels. So, if you have NumberOfMajorTickmarks=5 and NumberOfMinorLabels=1, then you may set NumberOfLabels to 9 and every minor and major tickmark will have its own label.

    Appearance, alignment, location, etc. of labels is defined by igsli_LabelL/R/HolderV, etc. You also may modify them by Tickmarks.CssClasses.LabelXxxx properties.

    Note: release version will have more properties, slightly different objects and some other changes. But overall concept will be very similar to CTP.

Reply Children