|
Title: No horizontal scrollbar in datagrid Post by: hande89 on July 29, 2014, 12:52:15 AM http://jquery-easyui.wikidot.com/forum/t-352646/datagrid-does-not-appear-horizontal-scrollbar
This bug is still there. I have exactly the same problem. No horizontal scrollbar is displayed when datagrid where width is fixed receives an empty data array. Tried the newest datagrid version from http://www.jeasyui.com/easyui/plugins/jquery.datagrid.js but its not working. Title: Re: No horizontal scrollbar in datagrid Post by: stworthy on July 29, 2014, 02:08:58 AM Here is the simple way to solve this issue. Extend a view and apply it to the datagrid.
Code: var myview = $.extend({},$.fn.datagrid.defaults.view,{Title: Re: No horizontal scrollbar in datagrid Post by: hande89 on July 30, 2014, 04:58:34 AM I have to use datagrid detail view. http://www.jeasyui.com/easyui/datagrid-detailview.js
If I apply your code there, the expand button is displayed even if no rows exist. The scrollbar is also not displayed on treegrid with 0 nodes. Title: Re: No horizontal scrollbar in datagrid Post by: stworthy on July 30, 2014, 06:40:03 PM If you are using 'detailview', please extend from detailview instead of extending from the default datagrid view.
Code: var myview = $.extend({},detailview,{Title: Re: No horizontal scrollbar in datagrid Post by: ryupanqui on July 31, 2014, 02:07:33 PM i have the same problem when the datagrid is empty. stworthy, are you planning to include this solution in the $.fn.datagrid.defaults.view as default behavior?
Title: Re: No horizontal scrollbar in datagrid Post by: omhardb on July 31, 2014, 02:15:53 PM I also have the same request. I need that datagrid have this behavior as default in the jeasyui library. Are you planning to incluide it in?
Title: Re: No horizontal scrollbar in datagrid Post by: stworthy on August 01, 2014, 12:23:37 AM The default behavior can be overridden as below:
Code: (function($){ |