Hi,
Topic is a bit old but this issue happened to me so just in case someone’s looking for a solution:
– Wrap each row into a css class with `{ width: 100px; text-overflow: ellipsis; overflow: hidden; }’
– Remove the horizontal scrollbar once the source’s loaded and reduce listbox height by 20
var horizontalScrollBarId = '#horizontalScrollBar + 'listboxId';
var horizontalScrollBar = $('#listboxId').find(horizontalScrollBarId);
// Horizontal scrollbar exists
if (horizontalScrollBar.length > 0) {
horizontalScrollBar.remove();
$('#listboxId').css('height', $('#listboxId').height() - 20);
}
Regards,