EasyUI Forum
May 12, 2024, 11:49:33 PM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
  Home Help Search Login Register  
  Show Posts
Pages: 1 [2] 3 4 5
16  General Category / Bug Report / Re: Layout bug? on: August 01, 2014, 05:05:36 PM
I found the cause - i incorrect add ”fit='true'" in the center region.
17  General Category / News / Re: jQuery EasyUI 1.4 Release on: July 31, 2014, 02:41:20 AM
Good job! Tanks Grin
18  General Category / Bug Report / Re: Layout bug? on: July 22, 2014, 08:31:52 PM
The menus displayed difference in right of the tab with version 1.3.6 and 1.3.5, like below.
1.3.6

1.3.5
19  General Category / Bug Report / Layout bug? on: July 22, 2014, 08:09:31 PM
I make a layout like this, but the accordion displayed Incomplete, that's OK if remove the combobox.
http://runjs.cn/code/e6qvprzd
20  General Category / EasyUI for jQuery / Re: Tab's menubar display on incorrect position in speed mode of browser on: July 10, 2014, 08:40:58 PM
I update all files in the themes from http://www.jeasyui.com, then it displayed correctly in version 1.3.5, but it's incorrected in version 1.3.6.
1.3.6:


1.3.5:
21  General Category / EasyUI for jQuery / Re: Howto change font-size of accordion? on: July 10, 2014, 08:32:56 PM
Thanks again! It's effected, but the title overflow from display area.
22  General Category / EasyUI for jQuery / Re: Howto change font-size of accordion? on: July 10, 2014, 07:27:19 PM
Thank you fisrt! But howto change font-size for title of accordion? Just like this.
Code:
<div class="easyui-accordion" fit="true" border="false">
<div title="Folder1" style="overflow:auto;padding:10px;">
<a href="javascript:openFile(1);" class="easyui-linkbutton" plain="true" iconCls="icon-folder">File1</a>
<a href="javascript:openFile(2);" class="easyui-linkbutton" plain="true" iconCls="icon-folder">File2</a>
<a href="javascript:openFile(3);" class="easyui-linkbutton" plain="true" iconCls="icon-folder">File3</a>
</div>
</div>
23  General Category / EasyUI for jQuery / Howto change font-size of accordion? on: July 09, 2014, 06:32:41 PM
I add style="font-size:2em" to accordion but not effect.
the link-button isn't effect yet.
24  General Category / EasyUI for jQuery / Re: Tab's menubar display on incorrect position in speed mode of browser on: May 23, 2014, 08:11:15 PM
stworthy?
25  General Category / EasyUI for jQuery / Tab's menubar display on incorrect position in speed mode of browser on: May 20, 2014, 12:24:41 AM
Speed mode

Normal mode

Code:
<div id="taskTabs" class="easyui-tabs" tools="#tabTools" fit="true">
    <div id="home" title="首页" style="padding:10px"></div>
    <div id="todo" title="待办事项" style="padding:10px"></div>
    <div id="allot" title="交办事项" style="padding:10px"></div>
    <div id="remind" title="个人提醒" style="padding:10px"></div>
</div>
<div id="tabTools"><a href="javascript:void(0)" class="easyui-linkbutton" disabled plain="true">【管理员】</a>
<a href="javascript:void(0)" class="easyui-menubutton" data-options="menu:'#tabMenus',iconCls:'icon-save',plain:true">系统</a>
<div id="tabMenus" style="width:68px;">
    <div style="width:68px;"><span>管理</span><div style="width:68px;">
    <div data-options="iconCls:'icon-tip'">设置</div>
    </div></div>
    <div class="menu-sep"></div>
    <div data-options="iconCls:'icon-help'">密码</div>
    <div data-options="iconCls:'icon-no'">退出</div>
</div></div>
26  General Category / Bug Report / datetimebox控件丢失原标签name属性 on: February 27, 2014, 01:31:01 AM
datetimebox控件生成代码时未保留原input标签的name属性,导致无法获取其值。
27  General Category / General Discussion / Re: 如何缩短Menu宽度 on: February 21, 2014, 09:21:15 AM
问题解决了,是jQuery-EasyUI版本的问题,我用的是1.3.2版,改用新版就正常了,多谢stworthy!
28  General Category / General Discussion / Re: 如何缩短Menu宽度 on: February 20, 2014, 04:26:15 AM

“im1~im3”右面还是空了很多啊
29  General Category / General Discussion / Re: 如何缩短Menu宽度 on: February 19, 2014, 09:59:55 AM
没有效果,我也在menu里设置过minWidth,同样不起作用。
Code:
<!--
$(function(){
var tabsIndex = -1;
$('#menuTabs').tabs({
border:false,
onSelect:function(title,index){
if (index != tabsIndex){
var $tab = $(this).tabs('getSelected'), menuId = $tab.panel('options').id;
if (menuId){
menuId = menuId.split('.')[1] || 0;
$tab.panel('refresh', 'loadTabs.php?Menu=' + menuId);
}
tabsIndex = index;
}
}
});
$.fn.menu.defaults.minWidth = 10;
});
//-->
</script>
<div id="menuTabs" class="easyui-tabs" tools="#tabTools" fit="true">
<div id="menuID.1" title="Menu#1" style="padding:10px"></div>
<div id="menuID.2" title="Menu#2" style="padding:10px"></div>
<div id="menuID.3" title="Menu#3" style="padding:10px"></div>
</div>
<div id="tabTools">
<a href="javascript:void(0)" class="easyui-menubutton" data-options="menu:'#tabMenus',iconCls:'icon-tip',plain:true">系统</a>
<div id="tabMenus" style="width:20px;">
<div data-options="iconCls:'icon-help'">密码</div>
<div data-options="iconCls:'icon-no'">退出</div>
<div class="menu-sep"></div>
<div data-options="iconCls:'icon-save'">管理</div>
</div>
</div>
30  General Category / General Discussion / 如何缩短Menu宽度 on: February 18, 2014, 05:39:24 AM
如下图所示,菜单项只有两个字,菜单却宽了好多,占用太多空间也不美观,不知道如何调整才能让它变窄。
http://t.163.com/ejzhang/status/2765511554071546080
Pages: 1 [2] 3 4 5
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!