[Fixed] jQuery datatable more than 10 column not hitting the server action
Hi, I was facing the same issue where I have to use more than 20 columns in my jquery datatable. So I found it’s due to query string length is increasing.
To fix it, I increased the size of query string web.config.
<system.webServer> <security> <requestFiltering> <requestLimits maxQueryString="32768"/> </requestFiltering> </security> </system.webServer>
It fixed my issue.
Cheers!