datagrid 显示隐藏 工具栏按钮
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了datagrid 显示隐藏 工具栏按钮相关的知识,希望对你有一定的参考价值。
function loadData(pars, url) {
$(‘#data‘).datagrid({
url: url,
........
........
, onLoadSuccess: function (data) { if (comBoxName1 == "1" || comBoxName1=="2") { $(‘#btnID‘).hide(); } else { $(‘#btnID‘).show(); } } , toolbar: [ { text: ‘新增‘, id: ‘btnID‘, name: ‘add‘, iconCls: ‘icon-add btn_menu‘, handler: function () { showAdd(‘@BaseRes.SPD_COL_013‘, comBoxName1); } }, ‘-‘, { text: ‘修改‘, id: ‘edt‘, name: ‘edt‘, iconCls: ‘icon-edit‘, handler: function () { var selectRows = $(‘#data‘).datagrid(‘getSelected‘); if (!selectRows) { $.messager.alert(‘@BaseRes.COM_CTL_NOTICE‘, "@BaseRes.MGC_CTL_031"); return; } Edit(selectRows.ID, "修改", true); } }, ‘-‘, { text: ‘删除‘, iconCls: ‘icon-remove‘, handler: function () { DeletCombox(); } } ] }); }
以上是关于datagrid 显示隐藏 工具栏按钮的主要内容,如果未能解决你的问题,请参考以下文章
使用 MVVM 模式在 WPF DataGrid 中显示/隐藏行功能