日期:2014-05-17 浏览次数:20972 次
data-options="
url: '<%=basePath %>system/serviceProvider_list.do',
method: 'get',
idField: 'id',
treeField: 'name',
method : 'post',
toolbar : '#tb',
singleSelect : false,
pagination : true,
width:'100%',
fitColumns : false,//设置为true将自动使列适应表格宽度以防止出现水平滚动。默认为false
fit : true,
height:'auto',
rowStyler: function(index,row){
if (index%2!=0){
return 'background-color:#FFFFFF;color:#000;';
}
}
"
$('#tt').treegrid({onBeforeExpand:function(row){
var url = '<%=basePath %>system/serviceProvider_nodeList.do?pid='+row.id;
$('#tt').treegrid('options').url = url;
return true;
}});