Hi DPolyakov,
Thank you for contacting us.
You can disable the arrow-up and arrow-down scroll buttons using the code example below:
// Create a jqxListBox$("#jqxWidget").jqxListBox({ source: source, width: '200', height: '250px', theme: theme });// get vertical scrollbar.var vScrollBar = $("#jqxWidget").find('#verticalScrollBar');// disable scroll buttons.vScrollBar.find('#jqxScrollBtnDown').attr('disabled', true);vScrollBar.find('#jqxScrollBtnUp').attr('disabled', true);
The scrollbar does not currently support hiding of the scroll buttons so that the user can drag the thumb in the whole scroll area. We will do our best to implement this feature for the upcoming release which will be available in the next week.
Best Regards,
Peter Stoev