2022年10月6日 星期四

[easyUI筆記] 如何取得編輯中的欄位值 get editing cell value

 

記錄一下在easyui的討論串裡有提供如何得編輯中的欄位值

var dg = $('#dg');
var cell = dg.datagrid('cell');
if (cell){
var ed = dg.datagrid('getEditor', cell);
if (ed){
var value = ed.actions.getValue(ed.target);
console.log(value)
}
}