Hi -
Can anyone give an example of how to use Jquery-ui in PharoJs?
I would like to use PharoJs to generate a page with a jquery-ui Slider widget and process its events through its slide function.
To give an illustration - what is the PharoJs equivalent to this javascript (in the $(document).ready function)?
$( "#slider" ).slider( { range: false, min: 90, max: 290, value:100,
slide: function( event, ui ) {
$( "#gradeECF" ).html("ECF:" + ui.value);
$( "#gradeElo" ).html( "Elo: " + (ui.value*7.5 + 700));}
}
);
Thanks in advance for any help