有兩個方法, 一個寫在前端 DataGrid.onQuery() 事件, 如下:
whereItems.push({field:'子科目',operator: '!=',value: ''});
return true;
}
另一個方法寫在後端的 Command.onBeforeExecuteSQL事件中, 如下:
exports.明細分類帳_onBeforeExecuteSQL = function(sql, whereStrs)
{
whereStrs.push("子科目<>''");
return sql;
};