ComponentOne Extender Controls for ASP.NET Web Forms
Wijmo Control Toolkit Extender Controls / C1Slider Extender / C1SliderExtender Tutorial / Step 2 of 3: Customizing the Slider Bar
In This Topic
    Step 2 of 3: Customizing the Slider Bar
    In This Topic

    In this topic you will set some of the properties for the C1SliderExtender.

    1. In the Visual Studio Properties window, click the drop-down list at the top of the Properties window and select C1SliderExtender1.
    2. Set the C1SliderExtender.Range property to True. This will create a styleable range element between the two text values, 100 and 400, you set in the TextBox in Step 1.
    3. Set the C1SliderExtender.Max property to 500 to set the maximum value on the slider. The markup for the C1SliderExtender will now look like this

    <cc1:C1SliderExtender ID="SliderExtender1" runat="server"

            TargetControlID="TextBox1" Range="True" Max="500">

        </cc1:C1SliderExtender>

     

    Now run the project to see the formatted slider.