What problem does this feature solve?
options 通过行序号设置复选框
rowSeriesNumber: { // dragOrder: true, // title: '序号', width: 40, cellType: 'checkbox', enableTreeCheckbox: true }
期望在行数据records中可以设置复选框默认状态
What does the proposed API look like?
const records = [ { percent: '100%', check: { text: 'unchecked', checked: false, disable: false } }, { percent: '80%', check: { text: 'checked', checked: true, disable: false } } ];
What problem does this feature solve?
options 通过行序号设置复选框
rowSeriesNumber: { // dragOrder: true, // title: '序号', width: 40, cellType: 'checkbox', enableTreeCheckbox: true }期望在行数据records中可以设置复选框默认状态
What does the proposed API look like?
const records = [ { percent: '100%', check: { text: 'unchecked', checked: false, disable: false } }, { percent: '80%', check: { text: 'checked', checked: true, disable: false } } ];