<?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: jqGrid Remove Extra Parameters Attached to Delete Url</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-remove-extra-parameters-attached-to-delete-url</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/jqgrid-remove-extra-parameters-attached-to-delete-url/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>pyraego on jqGrid Remove Extra Parameters Attached to Delete Url</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-remove-extra-parameters-attached-to-delete-url#p29268</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-remove-extra-parameters-attached-to-delete-url#p29268</guid>
        	        	<description><![CDATA[<p>Works perfect! Thank you</p>
]]></description>
        	        	<pubDate>Fri, 02 Aug 2013 21:45:16 +0300</pubDate>
        </item>
        <item>
        	<title>tony on jqGrid Remove Extra Parameters Attached to Delete Url</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-remove-extra-parameters-attached-to-delete-url#p29263</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-remove-extra-parameters-attached-to-delete-url#p29263</guid>
        	        	<description><![CDATA[<p>Hello,</p>
</p>
<p>Use serializeDelData to return parameter what you want.</p>
<p><a href="/jqgridwiki/doku.php?id=wiki:form_editing#delgridrow" target="_blank">Look here</a></p>
</p>
<p>Regards</p>
]]></description>
        	        	<pubDate>Fri, 02 Aug 2013 12:13:56 +0300</pubDate>
        </item>
        <item>
        	<title>pyraego on jqGrid Remove Extra Parameters Attached to Delete Url</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/jqgrid-remove-extra-parameters-attached-to-delete-url#p29258</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/jqgrid-remove-extra-parameters-attached-to-delete-url#p29258</guid>
        	        	<description><![CDATA[<p>Okay so I am trying to add delete / update / add functionality to my grid. The current issue is when I click submit in the delete confirm popup the Url has extra parameters that I don&#39;t want.</p>
<p>Ex: xxx.xxx/product/DeleteProduct?productId=&#38;oper=del&#38;id=2000</p>
<p>I want it to look like:&#160;xxx.xxx/product/DeleteProduct?productId=2000</p>
<p>How do I remove the "&#38;oper=del&#38;id=".</p>
<p>Thanks for any help. Code below.</p>
<pre class="default prettyprint prettyprinted"><p><input type='button' class='sfcodeselect' name='sfselectit5346' value='Select Code' data-codeid='sfcode5346' /></p><div class='sfcode' id='sfcode5346'><pre class=&#34;&#34;&#34;&#34;&#34;&#34;default&#34;&#34;&#34;&#34;&#34;><div class=&#34;&#34;&#34;&#34;&#34;&#34;sfcode&#34;&#34;&#34;&#34;&#34;&#34;>&#60;script type=&#34;text/javascript&#34;&#62;
       $(document).ready(function () {
           jQuery(&#34;#productTable&#34;).jqGrid({
               url: &#39;xxx.xxx/product/GetAllProducts&#39;,
               mtype: &#39;GET&#39;,
               datatype: &#39;json&#39;,
               height: 250,
               width: 900,
               pgbuttons: false, pgtext: null, viewrecords: false, rowList: [],
               rowNum:-1,
               pager: &#39;#productPager&#39;,
               viewrecords: true,
               colNames: [&#39;Id&#39;, &#39;Active&#39;, &#39;Description&#39;, &#39;Features&#39;, &#39;Name&#39;, &#39;Specification&#39;, &#39;ThumbNail&#39;, &#39;View Image&#39;, &#39;Solution Id&#39;, &#39;Search Type&#39;, &#39;Section&#39;, &#39;Section Search&#39;],
               colModel: [
                { name: &#39;Id&#39;, index: &#39;Id&#39;, width: 60, sortable: false,align:&#34;center&#34;, editable: false },
                { name: &#39;active&#39;, index: &#39;active&#39;, width: 90, sortable: false, align:&#34;center&#34;, editable: true },
                { name: &#39;description&#39;, index: &#39;description&#39;, width: 90, sortable: false, editable: true },
                { name: &#39;features&#39;, index: &#39;features&#39;, width: 100, sortable: false, editable: true },
                { name: &#39;name&#39;, index: &#39;name&#39;, width: 80, sortable: false, editable: true },
                { name: &#39;specification&#39;, index: &#39;specification&#39;, width: 100, height:40, sortable: false, editable: true, edittype:&#39;textarea&#39;,editoptions: {
                  rows:&#39;3&#39;,cols:&#39;20&#39;,  dataInit: function (domElem) {
                        $(domElem).addClass(&#34;editable&#34;);
                    }}},
                { name: &#39;thumbNail&#39;, index: &#39;thumbNail&#39;, width: 100, sortable: false, editable: true },
                { name: &#39;viewImage&#39;, index: &#39;viewImage&#39;, width: 100, sortable: false, editable: true },
                { name: &#39;SolutionId&#39;, index: &#39;SolutionId&#39;, width: 100, sortable: false, align:&#34;center&#34;, editable: true },
                { name: &#39;searchType&#39;, index: &#39;searchType&#39;, width: 100, sortable: false, align:&#34;center&#34;, editable: true },
                { name: &#39;section&#39;, index: &#39;section&#39;, width: 100, sortable: false, align:&#34;center&#34;, editable: true },
                { name: &#39;sectionSearch&#39;, index: &#39;sectionSearch&#39;, width: 100, sortable: false, align:&#34;center&#34;, editable: true },
                ],
                jsonReader: {
                   root: &#39;resultObject&#39;,
                   id: &#39;Id&#39;,
                   repeatitems: false,
                   page: function (obj) { return 1; },
                   total: function (obj) { return 1; },
                   records: function (obj) { return obj.resultObject.length }
                },
           });
           jQuery(&#34;#productTable&#34;).jqGrid(&#39;navGrid&#39;, &#39;#productPager&#39;, { edit: false, add: false, del: true, search: false, refresh: false  },
           // Edit options
            {},
           // Add options
            {},
           //del options
             {
              mtype: &#39;GET&#39;,
              url: &#39;xxx.xxx/product/DeleteProduct?productId=&#39;,
              onclickSubmit: function (postdata) {
              alert(&#39;in onclickSubmit: postdata=&#39; + postdata);
              return {};
             },
            reloadAfterSubmit: true,
            closeOnEscape: true,
            bottominfo: &#34;Fields marked with (*) are required.&#34;
            }
        );
     });
&#60;/script&#62;

&#60;table id=&#34;productTable&#34;&#62;&#60;/table&#62;
&#60;div id=&#34;productPager&#34;&#62;&#60;/div&#62;
&#60;/div&#62;</div></pre>
</div>
]]></description>
        	        	<pubDate>Thu, 01 Aug 2013 20:41:17 +0300</pubDate>
        </item>
</channel>
</rss>