I've a slider-bar created by gwtquery in the following manner:
slider = $(panelPpal).as(Ui).slider(sliderOptions);
I'm trying to set programmatically an int value to that slider. Then I'm issuing:
slider.value(someValue);
slider.intValues(someValue);
But none of this is working (perhaps, internally the slider is changing its value, but graphically I don't see any change).
Do anybody know if there is an alternate way, something like a workaround? What I'm thinking about is doing something like:
$(slider > 'grabButton').left(calculatedValue);
But IMO this is a little sloppy.
Thanks!