Skip to content

Remove horizontal scroll when set_autowidth() is set to true

Add the following script the end of the page to remove the horizontal scroll bar when auto width is enabled.

<script>
// hide horizontal scroll bar
$(function($){
  $('.ui-jqgrid .ui-jqgrid-bdiv').css('overflow-x', 'hidden');
});
</script>

Feedback and Knowledge Base