Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>I think that you can use almost any JavaScript grid library with ASP.NET MVC 4.0. It should just corresponds your other requirements.</p> <p>For example you can use jqGrid and include jqGrid <a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki%3ahow_to_install#development_installation" rel="nofollow">modules</a> instead of <code>jquery.jqGrid.min.js</code> or <code>jquery.jqGrid.src.js</code>. An additional advantage of the approach is that you can use <em>the latest version</em> of jqGrid from <a href="https://github.com/tonytomov/jqGrid" rel="nofollow">github</a> and be able more quickly implement bug fixes. So you can include at the beginning</p> <pre><code>i18n/grid.locale-en.js grid.base.js grid.common.js jquery.fmatter.js </code></pre> <p>Some more files can be needed only if you would use some <a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki%3ajquery_ui_methods" rel="nofollow">additional jqGrid functionality</a>:</p> <pre><code>jqDnR.js jqModal.js grid.jqueryui.js </code></pre> <p>Later, if you decide to implement data filtering or searching, you can include additional modules</p> <pre><code>grid.custom.js </code></pre> <p>for <a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki%3atoolbar_searching" rel="nofollow">the toolbar filtering</a> or</p> <pre><code>grid.formedit.js grid.filter.js </code></pre> <p>in case of <a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki%3asinge_searching" rel="nofollow">single field searching</a> or <a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki%3aadvanced_searching" rel="nofollow">advanced searching</a>.</p> <p>If you later decide implement grouping, tree grids, subgrids or one from tree supported editing mode you will need just append the list of included modules.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload