Scrollbar in datagrid dojo
How to remove t开发者_StackOverflowhe horizontal scroll bar of Dojo Datagrid? Even i remove scroll space for the scroll bar appears. How to eliminate?
You can overwrite the CSS for the dojoxGridScrollbox to have overflow-x:none, but its not recommended.
Alternatively, you could have one of the column widths be "auto" instead of fixed pixel. Assuming your grid is wider than the data you intend to display, this will typically remove the scrollbars.
精彩评论