Dynamic smart rendering using post instead of get

Hi,

I’m using dynamic smart rendering, but I need to send data using post instead of get. I saw this post: dhtmlx.com/docs/products/kb/inde … 0extension. This solution did submit the data by post, but when I scrolled down and new rows were loaded via ajax, the original data was not included in a post. The only data incldued was via get, and it was the row position. Is there a way to use dynamic smart rendering with post instead of get?

Thanks!

You can use “onDynXLS” to load next portion of rows with POST:

grid.attachEvent("onDynXLS", function(start,count){ grid.post("some.com/load/"+start+"?size="+count); return false; });