Hi,
On my app, I have a button to display a dialog box
and this action :
$("#desc").button({ icons: { primary: "ui-icon-help"}});
$( "#labeldesc" ).dialog({title:"Help",
autoOpen: false,
show: {
duration: 800
},
hide: {
duration: 800
},
height: 450,
width: 520
});
When i click on this button, i have a dialog box with a JqxInput which run correctly
$( "#desc" ).click(function() {
$( "#labeldesc" ).dialog( "open" );
$("#input").jqxInput({placeHolder: "Enter a word to search a check", height: 20, width: 200, minLength: 2,dropDownWidth: 500, items: 1000, source: contro, theme: 'metro' });
return false;
});
But my problem is when the number of elements return is too big, the windows is greater that my dialog box. (see screen)

Is there a solution to the widget does not overflow of my dialogbox and appears with scrollbar (I want to keep all result and not reduce the items) ?
Thanks for your help.
Nicolas.