X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/25ef3491bd9ae007ff1fc2b0d7943e6eaaccf775..0494b8d9b9bb03ab6c22b34dae81261e3cd7e3e6:/examples/slider/slider.js diff --git a/examples/slider/slider.js b/examples/slider/slider.js index 34019ba9..1b64e065 100644 --- a/examples/slider/slider.js +++ b/examples/slider/slider.js @@ -1,64 +1,83 @@ /*! - * Ext JS Library 3.0.3 - * Copyright(c) 2006-2009 Ext JS, LLC - * licensing@extjs.com - * http://www.extjs.com/license + * Ext JS Library 3.3.1 + * Copyright(c) 2006-2010 Sencha Inc. + * licensing@sencha.com + * http://www.sencha.com/license */ -Ext.onReady(function(){ - - new Ext.Slider({ - renderTo: 'basic-slider', - width: 214, - minValue: 0, - maxValue: 100 - }); - - new Ext.Slider({ - renderTo: 'increment-slider', - width: 214, - value:50, - increment: 10, - minValue: 0, - maxValue: 100 - }); - - new Ext.Slider({ - renderTo: 'vertical-slider', - height: 214, - vertical: true, - minValue: 0, - maxValue: 100 - }); - - new Ext.Slider({ - renderTo: 'tip-slider', - width: 214, - minValue: 0, - maxValue: 100, - plugins: new Ext.ux.SliderTip() - }); - - var tip = new Ext.ux.SliderTip({ - getText: function(slider){ - return String.format('{0}% complete', slider.getValue()); - } - }); - - new Ext.Slider({ - renderTo: 'custom-tip-slider', - width: 214, - increment: 10, - minValue: 0, - maxValue: 100, - plugins: tip - }); - - new Ext.Slider({ - renderTo: 'custom-slider', - width: 214, - increment: 10, - minValue: 0, - maxValue: 100, - plugins: new Ext.ux.SliderTip() - }); -}); +Ext.onReady(function(){ + + new Ext.Slider({ + renderTo: 'basic-slider', + width: 214, + minValue: 0, + maxValue: 100 + }); + + new Ext.Slider({ + renderTo: 'increment-slider', + width: 214, + value:50, + increment: 10, + minValue: 0, + maxValue: 100 + }); + + new Ext.Slider({ + renderTo: 'vertical-slider', + height: 214, + vertical: true, + minValue: 0, + maxValue: 100 + }); + + new Ext.Slider({ + renderTo: 'tip-slider', + width: 214, + minValue: 0, + maxValue: 100, + plugins: new Ext.slider.Tip() + }); + + var tip = new Ext.slider.Tip({ + getText: function(thumb){ + return String.format('{0}% complete', thumb.value); + } + }); + + new Ext.Slider({ + renderTo: 'custom-tip-slider', + width: 214, + increment: 10, + minValue: 0, + maxValue: 100, + plugins: tip + }); + + new Ext.Slider({ + renderTo: 'custom-slider', + width: 214, + increment: 10, + minValue: 0, + maxValue: 100, + plugins: new Ext.slider.Tip() + }); + + new Ext.slider.MultiSlider({ + renderTo: 'multi-slider-horizontal', + width : 214, + minValue: 0, + maxValue: 100, + values : [10, 50, 90], + plugins : new Ext.slider.Tip() + }); + + new Ext.slider.MultiSlider({ + renderTo : 'multi-slider-vertical', + vertical : true, + height : 214, + minValue: 0, + maxValue: 100, + values : [10, 50, 90], + plugins : new Ext.slider.Tip() + }); +});