<body class="easyui-layout">
<div data-options="region:'center',title:'系统中心',iconCls:'icon-standard-house-go'">
<div id="tt" class="easyui-tabs" fit="true">
<div title="Tab1" style="padding:20pxdisplay:none">
tab1fsfsdff
</div>
</div>
</div>
</body>
一般tt需要加个fit为true
希望能够帮到你!
easyUi datagrid设置行高度,在需要设置行高的table下添加样式就可以实现,这个设置只针对当前table,对别的table是没有影响的,具体代码如下:<div id="g" style="width: 100%height: 100%">
<table id="gtable"></table>
</div>
<style>
#g .datagrid-btable tr{height: 40px}
</style>
我觉得table不能设置为固定宽度 设置了固定的话浏览器变化的时候页面的美观感会下降 将其设置为自适应的话会好些如果你想设置为固定宽度的话:<table class="easyui-datagrid" style="width: xxpxheight: 100%">
自适应:
<table class="easyui-datagrid" style="width:auto height: 450pxpadding: 5px" toolbar="#toolbar" rownumbers="true" fitcolumns="true"
singleselect="false">
</table>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)