Announcement

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

    Cursor stuck while tabbing through ListGrid

    Hi there,
    we noticed a weird behaviour if tabbing through a ListGrid field with editor type date or time.
    If one of these fields is the first editable of a column, sometimes the cursor stuck in this field.

    This behaviour can be reproduced with your example:
    https://www.smartclient.com/smartcli...sizeIncrease=2

    The only change is set the date field as first field:
    Code:
    isc.ListGrid.create({
        ID: "countryList",
        width:550, height:224, alternateRecordStyles:true,
        // use server-side dataSource so edits are retained across page transitions
        dataSource: countryDS,
        // display a subset of fields from the datasource
        fields:[
            {name:"independence"},
            {name:"countryCode", title:"Flag", width:40, type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png", canEdit:false},
            {name:"countryName"},
            {name:"continent"},
            {name:"member_g8"},
            {name:"population"},
    
        ],
        autoFetchData: true,
        canEdit: true,
        editEvent: "click"
    })
    If you now tabbing through the rows the cursor somtimes stuck in the date field.

    Best regards

    #2
    Hi Isomorphic,

    I can reproduce this when tabbing slowly though the rows. Also, I think an easy setter on the ListGridField for setCanTabToIcon() might(?) be useful for DateFields. Or should one set this via editorProperties, which is also fine for me?

    Best regards
    Blama

    Comment


      #3
      Hi Isomorphic,
      is there any update? The bug still persists.

      Best regards

      Comment


        #4
        Hi BenediktK
        We know what the problem is and have a developer working on a fix. We'll follow up when this is resolved

        Regards
        Isomorphic Software

        Comment


          #5
          This issue should now be resolved. Please try the next nightly build dated Nov 14 or above

          Regards
          Isomorphic Software

          Comment


            #6
            Hi,
            thank you it works.

            Best regards

            Comment

            Working...
            X