You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Paging appears to be set even when using pageable="false" on the element. However this is a string yet the code in grid.js assumes a Boolean. Such that
if (this.pageable && !this.serverPaging) tempData = this.applyPage(tempData);
will evalulate to true along with the if.bind statement if you specify the pageable parameter. You need to either convert the pageable to be string based or use a different parameter for input vs. bind - see my image below of my app (I am using my own paging toolbar to control content which is why I want it off)
With pageable="false" in the HTML with your grid (this is a different mode where I was hoping to show the grid)
The text was updated successfully, but these errors were encountered:
I believe that if you make it pagable.bind="false" it works correctly (but it might legitimately be a bug!)
I recall Rob Eisenberg or someone in the gitter chan mentioned something about strong type support for @bindables - I was hoping that would take care of this particular issue as if you don't use .bind the true/false value is interpreted as a string
Not heard anything since though so I may have to address this as you've suggested
Paging appears to be set even when using pageable="false" on the element. However this is a string yet the code in grid.js assumes a Boolean. Such that
if (this.pageable && !this.serverPaging) tempData = this.applyPage(tempData);
will evalulate to true along with the if.bind statement if you specify the pageable parameter. You need to either convert the pageable to be string based or use a different parameter for input vs. bind - see my image below of my app (I am using my own paging toolbar to control content which is why I want it off)
With pageable="false" in the HTML with your grid (this is a different mode where I was hoping to show the grid)
The text was updated successfully, but these errors were encountered: