Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    ListGrid issue with combination of canDragSelect and canReorderFields

    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:
    Code:
    isc.ListGrid.create({
        data: exampleData,
        width:500, height:160, 
        showHeader: true,
        canDragSelect: true,
        canReorderFields: false,
        fields:[
            {name:"partName"},
            {name:"partNum", width:100}
        ]
    })
    Select any record in the grid and try to drag a column header:
    Click image for larger version

Name:	2020-10-15_122116.png
Views:	202
Size:	16.0 KB
ID:	263831
    (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

    #2
    Thanks for the notification and clear test case
    This issue has now been resolved. Please try the next nightly build, dated Oct 20 or above (12.1 or 13.0 branch)

    Regards
    Isomorphic Software

    Comment

    Working...
    X