Announcement

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

    selectionRangeNotLoadedMessage

    Hello,

    I have a little problem with my application: I sometime have a selectionRangeNotLoadedMessage that is displayed while trying to reload informations in a grid. My main problem is this happend randomly and rarely (for the same manipulation, it can happends or not)

    I searched, but didn't found any documentation about this error. When is this error supposed to be thrown ?


    SC_SNAPSHOT-2011-08-08/LGPL Development Only
    Firefox 26.0


    #2
    It's not random, it happens if either an end user or an attempted programmatic selection spans rows that have not been loaded from the server.

    If this is happening due to programmatic manipulation, you may simply have a bug where you are trying to select rows while data loading is still pending. If not, you can use a call to resultSet.getRange() to ensure that the rows you want to select are loaded - wait for the dataArrived event to ensure the rows have been loaded.

    Comment

    Working...
    X