Announcement

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

    double fetch when calling grid.refreshData after scrolling with mouse wheel

    SmartClient Version: SNAPSHOT_v12.1d_2019-11-02/AllModules Development Only (built 2019-11-02)
    and
    SmartClient Version: v11.1p_2019-10-30/AllModules Development Only (built 2019-10-30)

    Chrome on OSX

    Hello, please modify the fetchOperationFS sample like this:

    Code:
    isc.ListGrid.create({
        ID:"dsListGrid", 
        width: "100%",
        height: "100%",
        autoFetchData: true,
        dataSource: "supplyItem",
        sortField: "SKU",
        sortDirection: "descending",
        showFilterEditor: true
    });
    Then:
    - filter with value 99 in the SKU field
    - scroll to bottom using the mouse wheel, not dragging the scrollbar
    - execute dsListGrid.refreshData()
    - you'll see the fetches: after the first triggered by refreshData, there's another fetch with startRow=0 and endRow=75

    #2
    Hello, did you succeed in replicating the issue?

    Comment


      #3
      Yes, we see the issue you reported and are looking into it now.

      Comment


        #4
        This should be fixed back to SC 11.1p in the nightly builds dated 2019-11-11 and beyond.

        Comment


          #5
          I can confirm it's fixed, thank you very much.

          Comment

          Working...
          X