Hi,
I've noticed that if I use any CanvasItem for inline editing, it just goes crazy.
demo:
1) double click on empty row. (leave it as is, don't edit)
2) click on "Others" tab.
3) click on "Main" tab.
4) focus on any input item and press ESCAPE key (cancel editing).
5) click on "Others" tab.
6) click on "Main" tab.
whola, you've revealed a mystery
I've noticed that if I use any CanvasItem for inline editing, it just goes crazy.
demo:
1) double click on empty row. (leave it as is, don't edit)
2) click on "Others" tab.
3) click on "Main" tab.
4) focus on any input item and press ESCAPE key (cancel editing).
5) click on "Others" tab.
6) click on "Main" tab.
whola, you've revealed a mystery
Code:
isc.TabSet.create({ tabBarPosition: "top", width: 700, height: 300, tabs: [ { title: "Main", pane: isc.ListGrid.create({ canEdit: true, width: "100%", fields: [ {name: 'a'}, {name: 'b',editorType: "DateRangeItem"}, {name: 'c',editorType: "MultiComboBoxItem"}], data: [{}] }), name: "a" }, { title: "Others", pane: this.VLayout.create({}), name: "b" } ] });
Comment