|
Title: bug about easyui-menu Post by: xunis on January 14, 2014, 08:39:51 PM <div id="mm" class="easyui-menu" > <div id="menudetail"> <span data-options ='iconCls:icon-add'>插入</span><div style='width:150px;height:70%;overflow:auto'> <div><b>TEST</b></div> ...... <div><b>TEST</b></div> </div> (http://) A lot of blank when set 'overflow:auto' for div, Title: Re: bug about easyui-menu Post by: stworthy on January 15, 2014, 05:06:58 AM You set a wrong 'height' value style(height:70%). Please try the code instead.
Code: <div style='width:150px;height:200px;overflow:auto'> Title: Re: bug about easyui-menu Post by: xunis on January 16, 2014, 10:12:40 AM You set a wrong 'height' value style(height:70%). Please try the code instead. Code: <div style='width:150px;height:200px;overflow:auto'> excuse me, this problem still exist. Title: Re: bug about easyui-menu Post by: stworthy on January 16, 2014, 05:11:46 PM Please update your easyui library to the latest version. Or download the updated menu plugin from http://www.jeasyui.com/easyui/plugins/jquery.menu.js and include it to your page.
Here is the example http://jsfiddle.net/h5Hf8/ that works fine. Title: Re: bug about easyui-menu Post by: xunis on January 16, 2014, 06:48:05 PM Please update your easyui library to the latest version. Or download the updated menu plugin from http://www.jeasyui.com/easyui/plugins/jquery.menu.js and include it to your page. Here is the example http://jsfiddle.net/h5Hf8/ that works fine. Update version 1.34 to 1.35. This question is ok. thank you! |