datebox的format可以呼叫method嗎?

dataFormdataGridrender的時候,會讀取columnformat設定。如果是要寫一個特定的例子的話,可以考慮改在JQClientTools下的兩個cs程式中。判斷如果format為空白,或者某個特定值,則將其改為您實際需要的值。



比如JQDataForm.csJQFormColumnRender方法查找:



else if (Editor ==
JQEditorControl.DateBox)



在其下改寫:



if (string.IsNullOrEmpty(Format))



Format = "yyyy-mm-dd
HH:mm:SS";