known issue: tooltip position

This commit is contained in:
2023-04-04 17:31:42 +08:00
parent 3bc258149c
commit fa1b7df4a0
5 changed files with 83 additions and 21 deletions

View File

@ -58,7 +58,8 @@
enabled: 'enabled'
},
{ key: 'c3', caption: 'column 3', width: 90 },
{ key: 'c4', caption: 'Note', type: Grid.ColumnTypes.Input }
{ key: 'c4', caption: 'Note', type: Grid.ColumnTypes.Input },
{ key: 'c5', type: Grid.ColumnTypes.Icon, text: 'times', tooltip: 'Delete' }
];
grid.columnChanged = (type, index, value) => console.log(`column (${index}), ${type}, ${value}`);
grid.cellClicked = (rId, cId) => console.log(`row (${rId}), column (${cId}) clicked.`);