Hi Paul Lees,
Thanks for contacting Syncfusion support.
We have checked your shared sample and we can able to reproduce your mentioned issue. After analyzing this issue further, we have found that the Listbox is rendered correctly, but because of the Listbox is entirely inside the modal Dialog and in hidden state, the height and width for the Listbox is not set properly. Therefore the scroller is not rendered properly when we open the modal Dialog. So in this cases we suggest you refresh the ListBox scroller once, in order to set the correct height and width and to enable the scroller when we make the ListBox visible using the modal shown event.
<script>
$('#myModal').on('shown.bs.modal', function () { //modal shown event
var listobj = $("#SandESearch").ejListBox("instance");
listobj.scrollerObj.refresh(); // refresh the listbox scroller object
});
</script>
|
Please find the sample link below
Please let us know if you need any further assistance.
Regards,
Arun P