Changeset 2190 for branches/3.2-dev/demos/quickstart/protected/pages/Controls/Samples/TSlider/Home.page
- Timestamp:
- 09/03/2007 09:23:43 AM (16 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/3.2-dev/demos/quickstart/protected/pages/Controls/Samples/TSlider/Home.page
r2189 r2190 4 4 5 5 <p>Horizontal slider, with image handle, Javascript 'onSlide' handler, ServerSide 'onSliderChanged' handler and autopostback=true</p> 6 <com:TSlider id="hSlider" AutoPostBack="true" Handle.CssClass="handle-image" Direction="Horizontal" Enabled="true" MinValue="0" MaxValue="1 00" OnSliderChanged="sliderChanged">6 <com:TSlider id="hSlider" AutoPostBack="true" Handle.CssClass="handle-image" Direction="Horizontal" Enabled="true" MinValue="0" MaxValue="1" StepSize="0.1" OnValueChanged="sliderChanged"> 7 7 <prop:ClientSide.onSlide> 8 8 $('hslidervalue').innerHTML = value; … … 14 14 Vertical slider, cursor handle, no auto postback, no event handler 15 15 </p> 16 <com:TSlider id="vSlider" Direction="Vertical" Enabled="true" Height="200px" Values="(0,1,2,3,4,5)" MinValue="2" />16 <com:TSlider id="vSlider" Direction="Vertical" Enabled="true" Values="(-2,-1,0,1,6,2,7,3,4,5)" /> 17 17 <com:TButton onclick="testsubmit" text="Submit"/> 18 18 19 19 <br/> 20 <com:TSlider />20 <com:TSlider StepSize="0.1"/> 21 21 <p> 22 22 Results :<br/>
