略過巡覽連結。
略過巡覽連結      
  如何動態顯示或隱藏DataGrid的欄位? 觀看回應
舉例如下:
//隱藏
$("#dgMaster").datagrid('hideColumn', '姓名');
//顯示
$("#dgMaster").datagrid('showColumn', '姓名');






  如何動態顯示或隱藏 DataGrid的查看/編輯/刪除的按鈕? 觀看回應
在DataGrid的OnBeforeLoad事件添加如下的js
function dgMaster_onBeforeLoad(param)
{
//隱藏
    $('#dgMaster').datagrid('options').viewCommandVisible = false;
    //如果要顯示將false改為true
    //$('#dgMaster').datagrid('options').editCommandVisible = false;
    //$('#dgMaster').datagrid('options').deleteCommandVisible = false;
}






  如何動態修改DataGrid的欄位Caption? 觀看回應
舉例如下:
//RWD 一般畫面 改變欄位title
    $("#dgMaster").find('thead>tr>th').each(function () {
                if($.parseOptions(this).field == "英文姓名"){
                    this.innerText = "測試1";
                    //this.style.color = "red";
                    //this.style.fontSize = "22px";
                }
            });
    //RWD 手機/平板畫面 改變欄位title
    $("#dgMaster").find('tbody>tr>td').each(function () {
                if ($(this).attr('data-field') == "員工編號") {
                    $(this).find('.table-cell-label').html("測試2");
                    //$(this).find('.table-cell-label').css('color',"red");
                    //$(this).find('.table-cell-label')[0].style.fontSize = "22px";
                }
            });






  如何正確使用Server端infocommand的SecStyle和SecExcept屬性? 觀看回應
SecExcept要配合SecStyle, SecStyle=User那SecExcept要填Userid,
如果SecStyle=Group, SecExcept則填Groupid, 
如果SecExcept要填多個以”,”或”;”隔開






  請問統計圖組件如何動態給條件, 即時更新? 觀看回應
如果你是與DataGrid綁定的話, 可以設定 統計圖的 QueryObj屬性即可, QueryObj的名稱為 DataGrid名稱+"queryObj", 如: "dgMasterqueryObj";如果你是想自行以Where條件來控制統計圖, 如下為Line Chart的控制方法:
 $('#LineChart1').linechart('setWhere',"日期>='2020-01-01'")