Looks like you've got a 1.6rc6 version of ui.slider.js with a 1.6rc2 version of ui.core.js. Can you verify?
- Richard On Wed, Feb 18, 2009 at 3:17 AM, raan <[email protected]> wrote: > > HiI > > raised a ticket regarding the same in http://dev.jquery.com/ticket/. > they asked to raise the UI related queries in this link..... > > Query : > > I am not able to use the keyboard(arrow keys, home, end keys..) > control for slider to move the slider bar by using slider.js version > 1.6rc6 and core.js. > > In slider.js 1.6 hhen i remove the ui in the below code the keyboard > (arrow keys, home, end keys..) control is working. And noe code is > written for UP and DOWN arrow keys. > > switch (event.keyCode) { > > case $.ui.keyCode.HOME: newVal = self._valueMin(); break; case > $.ui.keyCode.END: newVal = self._valueMax(); break; case > $.ui.keyCode.UP: case $.ui.keyCode.RIGHT: if(curVal == self._valueMax > ()) return; newVal = curVal + step; break; case $.ui.keyCode.DOWN: > case $.ui.keyCode.LEFT: if(curVal == self._valueMin()) return; newVal > = curVal - step; break; } > > I do not know whether it is a bug or whether alternative ways are > there to solve it. > > Please let me know how to solve this. > > Regards > Ranjith > > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en -~----------~----~----~----~------~----~------~--~---
