<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
	<title>jQuery Grid Plugin - jqGrid - Topic: No data shown with multiselect</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/no-data-shown-with-multiselect</link>
	<description><![CDATA[Grid plugin]]></description>
	<generator>Simple:Press Version 5.7.5.3</generator>
	<atom:link href="http://www.trirand.com/blog/?page_id=393/help/no-data-shown-with-multiselect/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>kfallon on No data shown with multiselect</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/no-data-shown-with-multiselect#p4479</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/no-data-shown-with-multiselect#p4479</guid>
        	        	<description><![CDATA[<p>Thanks ! That has resolved the issue.</p></p>
]]></description>
        	        	<pubDate>Fri, 06 Feb 2009 11:00:09 +0200</pubDate>
        </item>
        <item>
        	<title>tony on No data shown with multiselect</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/no-data-shown-with-multiselect#p4478</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/no-data-shown-with-multiselect#p4478</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>You should upgrade to jqGrid 3.4 beta in order to work with jQuery 1.3.1</p>
]]></description>
        	        	<pubDate>Fri, 06 Feb 2009 10:46:16 +0200</pubDate>
        </item>
        <item>
        	<title>kfallon on No data shown with multiselect</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/no-data-shown-with-multiselect#p4477</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/no-data-shown-with-multiselect#p4477</guid>
        	        	<description><![CDATA[<p>I was watching another post, and saw that datatype clientSide and local may not be the same, so I changed mine from local to clientSide, but it did not affect the results.</p>
]]></description>
        	        	<pubDate>Fri, 06 Feb 2009 10:41:42 +0200</pubDate>
        </item>
        <item>
        	<title>kfallon on No data shown with multiselect</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/no-data-shown-with-multiselect#p4469</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/no-data-shown-with-multiselect#p4469</guid>
        	        	<description><![CDATA[<p>I am having a problem with multiselect in version jqGrid v3.3.2 on top of jQuery 1.3.1. If I set multiselect to TRUE, then I get the following error, and no data loads</p>
<p>[Exception... "&#39;Syntax error, unrecognized expression: [@id^=jqg_]&#39; when calling method: [nsIDOMEventListener::handleEvent]"&#160; nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)"&#160; location: "&#60;unknown&#62;"&#160; data: no]</p>
<p>Line 0</p>
<p>Note that despite this error, I can click to sort, roll up the table, and change the width of the columns.</p>
<p>If I change the multiselct option to false, the table loads, there are no errors, I can click to sort and all seems good...</p>
<p>I have searched the forum, and I&#39;m using an example right out of the docs. All the js/* libraries seem to be loading. The demo in the documentation site does work properly. I have tried under FF2 and Opera 9. In Opera, the red "loading" icon does not appear, and I can see the "select all" check box is there.</p>
<p>Thanks for the library and your help. I am working on a FOSS appllication for emergency management.</p>
<p>Kevin</p>
<p>Here is the js I am using, copied from the source.</p>
</p>
<div class="sourceRow"><span class="sourceLine"> 2</span><span class="sourceRowText">$(document).ready(function(){</span></div>
<div class="sourceRow"><span class="sourceLine"> 3</span><span class="sourceRowText"> $("#list4").jqGrid({</span></div>
<div class="sourceRow"><span class="sourceLine"> 4</span><span class="sourceRowText"> datatype: "local",</span></div>
<div class="sourceRow"><span class="sourceLine"> 5</span><span class="sourceRowText"> height: 450,</span></div>
<div class="sourceRow"><span class="sourceLine"> 6</span><span class="sourceRowText"> colNames:[&#39;Inv No&#39;,&#39;Date&#39;, &#39;Client&#39;, &#39;Amount&#39;,&#39;Tax&#39;,&#39;Total&#39;,&#39;Notes&#39;],</span></div>
<div class="sourceRow"><span class="sourceLine"> 7</span><span class="sourceRowText"> colModel:[</span></div>
<div class="sourceRow"><span class="sourceLine"> 8</span><span class="sourceRowText"> {name:&#39;id&#39;,index:&#39;id&#39;, width:60, sorttype:"int"},</span></div>
<div class="sourceRow"><span class="sourceLine"> 9</span><span class="sourceRowText"> {name:&#39;invdate&#39;,index:&#39;invdate&#39;, width:90, sorttype:"date"},</span></div>
<div class="sourceRow"><span class="sourceLine">10</span><span class="sourceRowText"> {name:&#39;name&#39;,index:&#39;name&#39;, width:100},</span></div>
<div class="sourceRow"><span class="sourceLine">11</span><span class="sourceRowText"> {name:&#39;amount&#39;,index:&#39;amount&#39;, width:80, align:"right", sorttype:"float"},</span></div>
<div class="sourceRow"><span class="sourceLine">12</span><span class="sourceRowText"> {name:&#39;tax&#39;,index:&#39;tax&#39;, width:80, align:"right",sorttype:"float"},</span></div>
<div class="sourceRow"><span class="sourceLine">13</span><span class="sourceRowText"> {name:&#39;total&#39;,index:&#39;total&#39;, width:80,align:"right",sorttype:"float"},</span></div>
<div class="sourceRow"><span class="sourceLine">14</span><span class="sourceRowText"> {name:&#39;note&#39;,index:&#39;note&#39;, width:150, sortable:false} ],</span></div>
<div class="sourceRow"><span class="sourceLine">15</span><span class="sourceRowText"> imgpath: &#39;themes/basic/images&#39;,</span></div>
<div class="sourceRow"><span class="sourceLine">16</span><span class="sourceRowText"> multiselect: true,</span></div>
<div class="sourceRow"><span class="sourceLine">17</span><span class="sourceRowText"> caption: "Manipulating Array Data" });</span></div>
<div class="sourceRow"><span class="sourceLine">18</span></div>
<div class="sourceRow"><span class="sourceLine">19</span><span class="sourceRowText"> var mydata = [</span></div>
<div class="sourceRow"><span class="sourceLine">20</span><span class="sourceRowText"> {id:"1",invdate:"2007-10-01",name:"test",note:"note",amount:"200.00",tax:"10.00",total:"210.00"},</span></div>
<div class="sourceRow"><span class="sourceLine">21</span><span class="sourceRowText"> {id:"2",invdate:"2007-10-02",name:"test2",note:"note2",amount:"300.00",tax:"20.00",total:"320.00"},</span></div>
<div class="sourceRow"><span class="sourceLine">22</span><span class="sourceRowText"> {id:"3",invdate:"2007-09-01",name:"test3",note:"note3",amount:"400.00",tax:"30.00",total:"430.00"},</span></div>
<div class="sourceRow"><span class="sourceLine">23</span><span class="sourceRowText"> {id:"4",invdate:"2007-10-04",name:"test",note:"note",amount:"200.00",tax:"10.00",total:"210.00"},</span></div>
<div class="sourceRow"><span class="sourceLine">24</span><span class="sourceRowText"> {id:"5",invdate:"2007-10-05",name:"test2",note:"note2",amount:"300.00",tax:"20.00",total:"320.00"},</span></div>
<div class="sourceRow"><span class="sourceLine">25</span><span class="sourceRowText"> {id:"6",invdate:"2007-09-06",name:"test3",note:"note3",amount:"400.00",tax:"30.00",total:"430.00"},</span></div>
<div class="sourceRow"><span class="sourceLine">26</span><span class="sourceRowText"> {id:"7",invdate:"2007-10-04",name:"test",note:"note",amount:"200.00",tax:"10.00",total:"210.00"}</span></div>
<div class="sourceRow"><span class="sourceLine">27</span><span class="sourceRowText"> ];</span></div>
<div class="sourceRow"><span class="sourceLine">28</span></div>
<div class="sourceRow"><span class="sourceLine">29</span><span class="sourceRowText"> for(var i=0;i&#60;=mydata.length;i++)</span></div>
<div class="sourceRow"><span class="sourceLine">30</span><span class="sourceRowText"> jQuery("#list4").addRowData(i+1,mydata[i]);</span></div>
<div class="sourceRow"><span class="sourceLine">31</span><span class="sourceRowText"> });</span></div>
<div class="sourceRow"></div>
<div class="sourceRow">Thanks</div>
]]></description>
        	        	<pubDate>Fri, 06 Feb 2009 08:29:08 +0200</pubDate>
        </item>
</channel>
</rss>