Hi,
When a ListGrid is set up with canDragSelect=true and canReorderFields=false, dragging a column header wrongly displays the record drag tracker instead of showing no drag tracker at all.
The problem can be demonstrated this showcase by replacing the code with the following snippet:
Select any record in the grid and try to drag a column header:
(when no record is selected, the drag tracker shows a small black box instead)
The problem is observed on version: 12.1p build: 2020-10-14
Gil
When a ListGrid is set up with canDragSelect=true and canReorderFields=false, dragging a column header wrongly displays the record drag tracker instead of showing no drag tracker at all.
The problem can be demonstrated this showcase by replacing the code with the following snippet:
Code:
isc.ListGrid.create({ data: exampleData, width:500, height:160, showHeader: true, canDragSelect: true, canReorderFields: false, fields:[ {name:"partName"}, {name:"partNum", width:100} ] })
(when no record is selected, the drag tracker shows a small black box instead)
The problem is observed on version: 12.1p build: 2020-10-14
Gil
Comment