<?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: Send own ID when deleting row</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/send-own-id-when-deleting-row</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/send-own-id-when-deleting-row/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>KevinES on Send own ID when deleting row</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/send-own-id-when-deleting-row#p22434</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/send-own-id-when-deleting-row#p22434</guid>
        	        	<description><![CDATA[<p>Thank you,</p>
</p>
<p>the key:true attribute was a good workaround 🙂</p>
</p>
<p>My DatabaseID: thats the PrimaryKey in the DatabaseTable - the unique key.</p>
<p>Maybe i change my XML. But for now, it works. (its only a prototype)</p>
<p>-Kevin</p>
]]></description>
        	        	<pubDate>Wed, 16 Mar 2011 12:59:37 +0200</pubDate>
        </item>
        <item>
        	<title>OlegK on Send own ID when deleting row</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/send-own-id-when-deleting-row#p22433</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/send-own-id-when-deleting-row#p22433</guid>
        	        	<description><![CDATA[<p>Hello Kevin,</p>
<p>please define what do you mean under the DatabaseID and why it is not the same as RowID? With which data you fill the grid? Is user_id is the qnique id for your data? Do you fill the same id in the "id" field attribute of the xml data? If jqGrid find no id information in your input it uses 1,2,3... as ids. Probably it is your problem?</p>
<p>You can additionally define key:true property in the &#39;user_id&#39; column. I hope this will also fix you problem. Nevertheless I recommend you to read <a href="/jqgridwiki/doku.php?id=wiki:retrieving_data#xml_data" target="_blank">this part</a> of the documentation amd change either you XML data to be readed by jqGrid inclusive ids or include xmlReader parameter which follows to the same results.</p>
<p>Best regards<br />Oleg&#160;</p>
]]></description>
        	        	<pubDate>Wed, 16 Mar 2011 12:17:07 +0200</pubDate>
        </item>
        <item>
        	<title>KevinES on Send own ID when deleting row</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/send-own-id-when-deleting-row#p22432</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/send-own-id-when-deleting-row#p22432</guid>
        	        	<description><![CDATA[<p>Hi, i have a small problem.</p>
<p>When i try to delete a row, the post only send the RowID and the operation (del). How can i pass my DatabaseID?</p>
<p><span style="color: #0000ff;"></span></p>
<p><input type='button' class='sfcodeselect' name='sfselectit2296' value='Select Code' data-codeid='sfcode2296' /></p>
<div class='sfcode' id='sfcode2296'>
<p><span style=&#34;color: #0000ff;&#34;>jQuery(&#34;#toolbar&#34;).jqGrid({<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; url:&#39;/bla/Benutzer?a=get&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; datatype: &#34;xml&#34;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; height: 255,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; width: 600,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; colNames:[&#39;uID&#39;,&#39;Login&#39;, &#39;Vorname&#39;, &#39;Nachname&#39;, &#39;Mail&#39;],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; colModel:[<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;user_id&#39;,index:&#39;user_id&#39;, width:65, editable:true, editoptions:{readonly:true,size:10}},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;login&#39;,index:&#39;login&#39;, width:150, sortable:true, editable:true},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;vorname&#39;,index:&#39;vorname&#39;, width:100, sortable:true, editable:true},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;nachname&#39;,index:&#39;nachname&#39;, width:100, sortable:true, editable:true},<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;mail&#39;,index:&#39;mail&#39;, width:100, sortable:true, editable:true}<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowNum:50,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowList : [10,30,50],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; mtype: &#34;POST&#34;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; rownumbers: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; rownumWidth: 40,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; gridview: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; pager: &#39;#ptoolbar&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortname: &#39;user_id&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; viewrecords: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortorder: &#34;asc&#34;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; caption: &#34;Toolbar Searching&#34;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; editurl: &#34;/bla/Benutzer?a=set&#34;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; });</span></p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; jQuery(&#34;#toolbar&#34;).jqGrid(&#39;navGrid&#39;,&#39;#ptoolbar&#39;,{del:true,add:true,edit:true,search:true});<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; jQuery(&#34;#toolbar&#34;).jqGrid(&#39;filterToolbar&#39;,{stringResult: true,searchOnEnter : false});</p>
</p>
</div>
<p>Thank you,</p>
<p>Kevin</p>
]]></description>
        	        	<pubDate>Wed, 16 Mar 2011 11:38:11 +0200</pubDate>
        </item>
</channel>
</rss>