Hi,
This seems to be a very old topic but it is still happening for me. When I click the button to the left or right of my slider, I am receiving two events and two position moves.
jqwidgets – v7.1.0
jquery – v3.4.1
Sample Code:
$(‘#monthLevel’).jqxSlider({ min: 1, max: 10, ticksFrequency: 1, value: 5, step: 1, mode: ‘fixed’, theme: ‘greengray’, width: ‘100%’ });
$(‘#monthLevel’).on(‘change’, function (event) {
event.stopPropagation();
$(‘#lblCurrentMonths’).text(event.args.value);
//alert(month);
});
When I click either button, the current months label increments by two.
Any help would be greatly appreciated.