Add $js->slider()
Reported by Sean Templeton | January 30th, 2010 @ 12:06 AM | in DojoCake 1.3.2
slider()
Create snippet of Javascript that converts an element into a slider
ui widget. See your libraries implementation for additional usage
and features.
Options
•handle - The id of the element used in sliding.
•direction - The direction of the slider either 'vertical' or
'horizontal'
•min - The min value for the slider.
•max - The max value for the slider.
•step - The number of steps or ticks the slider will
have.
•value - The initial offset of the slider.
Events
•change - Fired when the slider's value is updated
•complete - Fired when the user stops sliding the handle
Example use
$js->get('#element'); $js->slider(array(
'complete' => 'onComplete',
'change' => 'onChange',
'min' => 0,
'max' => 10,
'value' => 2,
'direction' => 'vertical',
'wrapCallbacks' => false
)); If you were using the jQuery engine the following code would be added to the buffer:
$("#element").slider({change:onChange, max:10, min:0, orientation:"vertical", stop:onComplete, value:2});
No comments found
Please Sign in or create a free account to add a new ticket.
With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile ยป
Dojo Cake is a library of CakePHP helpers and controllers to make the process of adding Dojo to CakePHP more easy. The library includes helpers for widgets and XHR connections.
Dojo Cake was developed to make the process of making ajax applications in CakePHP as easy as making the application itself, making Web 2.0 applications in CakePHP a piece of cake (pun intended). With a growing number of widgets, and support for basic ajax and xhr connections, Dojo Cake aims to be a powerful link between clientside programming and server-side programming.
The project is hosted on google code at http://dojocake.googlecode.com