Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>You have some small, but important errors in the code:</p> <ul> <li>You should include <code>&lt;!DOCTYPE html ...&gt;</code> statement before <code>&lt;html&gt;</code> element. In your later code you use XML comments like <code>&lt;!-- Load CSS--&gt;</code>. So you want probably use <code>XHTML</code>. In the case you should replace <code>&lt;html&gt;</code> to</li> </ul> <pre class="lang-html prettyprint-override"><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; </code></pre> <ul> <li>The next problem: you should remove <code>&lt;br /&gt;</code> which can't be used inside of <code>&lt;head&gt;</code></li> <li>You should include encoding declared of the document like</li> </ul> <pre class="lang-html prettyprint-override"><code>&lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt; </code></pre> <ul> <li>you should use correct case of ids. Because use used <code>&lt;div id="exampleGrid"&gt;&lt;/div&gt;</code> you have to use <code>'#exampleGrid'</code> in the later code instead of <code>'#examplegrid'</code></li> <li>the code <code>jQuery("#testgrid").jqGrid('examplegrid',...);</code> is wrong and it produces exception because there are no method <code>'examplegrid'</code> in jqGrid. What you wanted to do is <code>jQuery("#testgrid").jqGrid('navGrid',...);</code></li> <li>To absolutely correct XHTML document you should change <code>&lt;table id="testgrid"&gt;&lt;/table&gt;</code> to <code>&lt;table id="testgrid"&gt;&lt;tr&gt;&lt;td/&gt;&lt;/tr&gt;&lt;/table&gt;</code></li> </ul> <p>You can verify on <a href="http://validator.w3.org/" rel="nofollow">validator.w3.org</a> that <a href="http://www.ok-soft-gmbh.com/jqGrid/lorenzokuzma.htm" rel="nofollow">the demo</a> after the changed have no HTML errors and it displays the data in the grid too.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

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