This commit is contained in:
yumoqing 2025-01-01 18:17:32 +08:00
parent 55d53b5693
commit 0ccbc1d61b

View File

@ -98,9 +98,11 @@ bricks.Tabular = class extends bricks.DataViewer {
var dr = new bricks.DataRow(options); var dr = new bricks.DataRow(options);
dr.set_css('tabular-row'); dr.set_css('tabular-row');
dr.render(header); dr.render(header);
/*
dr.event_names.forEach(e => { dr.event_names.forEach(e => {
dr.toolbar_w.bind(e, this.record_event_handle.bind(this, e, record, dr)); dr.toolbar_w.bind(e, this.record_event_handle.bind(this, e, record, dr));
}); });
*/
dr.bind('check_changed', this.record_check_changed.bind(this)); dr.bind('check_changed', this.record_check_changed.bind(this));
return dr; return dr;
} }