Announcement

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

    Listgrid does not send _startRow

    Hi,

    What would cause a ListGrid to never send the _startRow variable?

    I'm trying to enable pagination on a Grid but it simply does not work. It always fetch all rows. My server-side already supports _startRow/_endRow parsing, but the problem is that i can't make SmartClient sent them.

    #2
    Seems to happens because i was overriding transformRequest.

    Although i'm calling this.Super, it still fails. I even tried the following code to make sure my override wasn't messing _startRow:

    Code:
    isc.RestDataSource.addProperties({
    	transformRequest: function(dsRequest){
    		return this.Super('transformRequest', arguments);
            }
    });
    Ideas of why this happens? How to properly override transformRequest then?

    Comment

    Working...
    X