Title: Ribbon and IE Post by: Pierre on April 24, 2014, 12:38:43 AM Hello
Ribbon extension (created from markup) does not work well (see image) on Internet Explorer. On Chrome it works OK. Any idea what is the problem? I Downloaded extension from http://www.jeasyui.com/extension/ribbon.php Thanks! Title: Re: Ribbon and IE Post by: Pierre on April 24, 2014, 04:20:19 AM OK I solved it by adding additional <br> at the end of toolbar, ie:
<div class="ribbon-toolbar"> <a href="#" class="easyui-linkbutton" data-options="name:'cut',iconCls:'icon-cut',plain:true">Cut</a><br><br> <a href="#" class="easyui-linkbutton" data-options="name:'copy',iconCls:'icon-copy',plain:true">Copy</a><br><br> <a href="#" class="easyui-linkbutton" data-options="name:'format',iconCls:'icon-format',plain:true">Format</a><br> </div> |