Announcement

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

    Can reorder tiles in tileGrid while canReorderTiles:false

    Hi there,
    I have a TileGrid where I disabled the canReorderTiles. If I set "canDrag" to true, then it is possible to reorder, even if I'm defining canReorderTiles to false.
    It shouldn't be possible to reorder the items if canReorderTiles:false, even if canDrag is set to true.

    See here:
    Click image for larger version

Name:	Animation 23.gif
Views:	58
Size:	99.2 KB
ID:	232716
    This is reproducable witth the latest nightly (SmartClient_v100p_2015-11-12_Pro) and all browsers.

    Here is the code for reproduction
    Code:
    testData = [
        {
            value: 1,
            elementId: 1
        },
        {
            value: 2,
            elementId: 2
        },
        {
            value: 3,
            elementId: 3
        },
        {
            value: 4,
            elementId: 4
        },
        {
            value: 5,
            elementId: 5
        }];
    isc.VLayout.create({
        ID : "vLayout",
        width : "100%",
        height : "100%",
        members : [
            isc.TileGrid.create({
                ID : "dropzoneElement",
                width : "100%",
                height : "100%",
                canReorderTiles : false, //!!
                canDrag: true, //!!
                showAllRecords : true,
                selectionType : "multiple",
                tileWidth : 50,
                tileHeight : 50,
                data : testData,
                fields: [
                    {name:"value"}
                 ]
            })]
    });

    #2
    Hi there,
    Are there any additional information you might need for this issue?
    Just in case I want to ask if it is necessary, that I ask for the current process of an issue after no reponse for 3 days.
    If I'm not getting any repsonse it seems for me that the post might has been overlooked.

    Best regards

    Comment


      #3
      We have a developer looking at this issue. Sorry we didn't update the thread to let you know. We'll follow up when we have more information for you.

      Regards
      Isomorphic Software

      Comment


        #4
        I've testet this against the SmartClient_v100p_2015-11-26_Pro and it seems to be fixed.
        Thanks
        Last edited by SimonF; 27 Nov 2015, 02:16.

        Comment

        Working...
        X