Hi,
When I set a tooltip on the jqxSlider it causes the val to be empty. If I comment out the tooltip, the val returns correctly. What am I doing wrong?
I copied a sample from one of your jsfiddle examples below and modified it to illustrate the issue.
Thank you!
Rob
<div id=”jqxSlider”></div>
<div id=”log”></div>
$(‘#jqxSlider’).jqxSlider({
theme: ‘energyblue’,
mode: ‘fixed’
});
$(‘#jqxSlider’).jqxSlider(‘val’, 5);
$(‘#jqxSlider’).jqxTooltip({content: ‘test’});
$(‘#jqxSlider’).on(‘change’, function (event) {
var value = new Number(event.args.value).toFixed(2);
$(“#log”).html(“The new event.value is ” + value + ‘, val ‘ + $(‘#jqxSlider’).val());
});