Let say I have multiple pages, one of those is main page that simply display logo styles, text etc, the other pages uses multiple grids, do I have to configure/retrieve the data for other pages on startup even if this is not necessary?
Is it possible not to configure grid setting on startup?
257 views Asked by deadlock At
1
Yes you can do that easily in any controller action method and based on whatever parameters and logic you want, and it is the same as you do in the start up configuration.
The only issue I faced while doing that is in this line:
because this lines will throw an error if the grid already added and defined, and the bad news that the solution I found so far is not a good solution as you can see in this post: https://github.com/joeharrison714/MVCGrid.Net/issues/62
Something like this:
*** If you got a better way please share it.