We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you use the DataTablesAjaxPostModel the ToNameValueCollection forces you to provide a search object, even if you just want to order and not search.
DataTablesAjaxPostModel
ToNameValueCollection
The text was updated successfully, but these errors were encountered:
The fix should be to add some null checks.
model[$"columns[{i}][search][value]"] = Columns[i].Search?.Value; model[$"columns[{i}][search][regex]"] = Columns[i].Search?.Regex.ToString();
Sorry, something went wrong.
Add null checks around Columns[i].Search
Columns[i].Search
d713c26
Ref AlexanderKrutov#31
Thank you! The fix is included in 1.7.2.
No branches or pull requests
If you use the
DataTablesAjaxPostModel
theToNameValueCollection
forces you to provide a search object, even if you just want to order and not search.The text was updated successfully, but these errors were encountered: