Hi...!
i don't know if this is possible, and I have searched but could not find what I am looking for. Perhaps a kind soul would direct me to where I should be reading for my trouble.
I have created a grid with pagination. I am trying this CodeIgniter framework and I like the URL parameters that follow the MVC rule! I mean I am trying to display data in a pagination form inside a grid and I am referencing the php function that returns a set of data in a certain page as follows:
www.myweb.com/customers/list/10/3 (where 10 is the page size and 3 is the number of the page to be displayed).How can i do this with the grid data.stiore baseParams? Can this be done? Is there another avenue I should follow?
Now when I use the baseParams I take it that it sends the request as :
http://www.myweb.com/customers/list/...0&pagenumber=3 When it does that my script no longer works. I don't really want to use the querystring format but rather the clean URL format such as the /10/3
Thank you kindly in advance...
And have a stunning day!