listeners: {
    	'edit': function(editor, e) {
    		var record = e.record;
    		alert("id:" + record.get("id"));
    	}
    }

grid.on('edit', function(editor, e) {
    // commit the changes right after editing finished
    e.record.commit();
};

 

相关文章:

  • 2021-12-23
  • 2021-10-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-14
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-13
  • 2022-12-23
  • 2021-06-22
  • 2021-12-11
相关资源
相似解决方案