search for: handle1

Displaying 5 results from an estimated 5 matches for "handle1".

Did you mean: handle
2006 Apr 24
1
implementing a Slider control
...e", "effects" ,"dragdrop","application","controls" ,"scriptaculous","global","slider" %> <html> <script type="text/javascript" language="javascript"> var s2 = new Control.Slider(''handle1'',''track1'', {axis:''horizontal'',increment: 1, minimum: 0, maximum:100,disabled: false}); s2.options.onChange = function(value){ $(''debug1'').innerHTML = value; }; s2.options.onSlide = function(value){ $('...
2005 Sep 21
8
Slider controls
...sports a new Control for horizontal and vertical sliders. See the functional test file (test/functional/slider_test.html) for information on how to use it. Basically, you do: <div id="track1" style="width:200px;background-color:#aaa;height:5px;"> <div id="handle1" style="width:5px;height:10px;background- color:#f00;"> </div> </div> new Control.Slider(''handle1'',''track1'',{ onSlide:function(value){ // do something }, onChange:function(value){ // do something } }); You can also h...
2007 Aug 30
1
Fwd: Priotirize SSH Traffic
...ply to the list :-/ Début du message réexpédié : > De : Vincent Dautremont <vdautrem@ulb.ac.be> > Date : 30 août 2007 16:58:26 GMT+02:00 > À : Ali Jawad <alijawad1@gmail.com> > Objet : Rép : [LARTC] Priotirize SSH Traffic > > try that > #tc qdisc add dev eth0 root handle1: prio > # tc filter add dev eth0 protocol ip parent 1: prio 1 u32 match ip > dport 22 0xffff flowid 1:1 > # tc filter add dev eth0 protocol ip parent 1: prio 2 u32 match u32 > 0 0 flowid 1:2 > 1st command create a queuing discipling with a priority queuing. > 2nd command, say...
2008 Jun 20
0
Slider as Scrollbar in a window
...crollbars won''t work. Does anybody have an idea why? Source code for the scrollbars: ( I do not post the css & js because I didn''t change it.) <div id="scrollable1"> ... some very long text.... </div> <div id="track1"><div id="handle1"></div></div> <div id="track2"><div id="handle2"></div></div> Of cource all necessary includes habe been added (css & js) Thanks for any suggestions! Christian --~--~---------~--~----~------------~-------~--~----~ You received...
2005 Nov 11
0
A couple of draggable patches...
...les. I'm writing a framework on top of scriptaculous and it appeared to me that this would be something that could belong to core Draggable objects. To activate, just add to draggable options on creation. (By default gridSize is set to 10) > new Draggable('revertbox1',{handle:'handle1',snapToGrid:true, gridSize:30,revert:true}); > > I also stuck this <http://dev.rubyonrails.com/ticket/2827> in which has been very handy for me and allows draggable observers to react to the draggable drag event. Hope you find it usefull, Regards, Saimon _______________________...