如何動態修改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";
                }
            });