DataGrid編輯時, 如果有些欄位為ReadOnly狀態, 可否使用原來顯示的格式, 而非ReadOnly的文字編輯框?
可以透過 DataGrid的 onShowEditor事件來處理, 如下: 
function dgDetail_onShowEditor(index, field, editor)
{
    if(field == '題目'){  //欄位為'題目'時, 改育 type: 'div'來顯示
        return {type: 'div'};  
    }
    else  {
        return editor;  // 使用原來的 Editor
    }
}