Hello, I am currently having a little trouble with my grid.
I decided to initialize my grid from xml.
I am using dynamic loading feature also.
Last, but not least, I’d like to use different api call for header and data.
So my code looks somewhat like:
grid.load('api/getHeader');
grid.enableSmartRendering(true, 50);
grid.load('api/getData');
The problem is, after dynamic loading is enabled grid tries to fetch another portion of data from header url.
Console logs look somewhat like:
api/getHeader
api/getData
api/getHeader?posStart=50&count=50
Is there any workaround? Maybe I am not doing this in correct order? I’d appreciate your help