Hi Dimitar,
I add this to your example and it doesn’t work. I think the ‘hidden’ of the jqxwindow that causes the issue. In my code, I actually use the range slider but it doesn’t matter what type of slider (yours or mine), neither one work.
$(‘#jqxSlider’).jqxSlider({
height: 30,
min: 0,
max: 50,
step: 1,
ticksFrequency: 1,
values: [14, 26],
rangeSlider: true,
mode: ‘fixed’,
width: 200,
showRange: true,
showTicks: false,
});
In Javascript: I add
$(‘button’).click(function(){
$(“#jqxwindow”).jqxWindow(‘open’);
});
In your HTML, I add <button id=’button’>Test</button> and ‘hidden’ to jqxwindow
<HTML>
<HEAD>
</HEAD>
<BODY>
<button id=’button’>Test</button>
<div id=’jqxwindow’ hidden>
<div>Header</div>
<div>
<div id=”jqxSlider”></div>
</div>
</div>
</BODY>
</HTML>