<?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: Event to inspect what is being posted on save</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save</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/event-to-inspect-what-is-being-posted-on-save/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on Event to inspect what is being posted on save</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3663</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3663</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Use the new option in form editing recreateForm - see the news or simple remove the modal that holds the form. The id of the modal is combination from "editmod" + gridid - ie if the grid id is mygrid the the id of the modal is editmodmygrid</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Tue, 23 Dec 2008 03:23:56 +0200</pubDate>
        </item>
        <item>
        	<title>Luigino on Event to inspect what is being posted on save</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3631</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3631</guid>
        	        	<description><![CDATA[<p>No wait, resolved it since I understood how it worked the post parameter with httpfox (always this miracle of the mozilla :-D) but now I&#39;d like to ask tony an issue:</p>
<p>I have implemented a SELECT where it creates a grid with different parameters, obviously I use jQuery("#list").GridUnload(); before to create the grid. BUT, when I click on Add Row or Edit row when I&#39;m in a new grid, the formedit doesn&#39;t refresh too! I have to refresh the entire page to make it working... is there maybe a force parameter to refresh also the formedit with GridUnload()?</p>
<p>Thanks</p>
<p>Luigi</p>
]]></description>
        	        	<pubDate>Sun, 21 Dec 2008 10:09:09 +0200</pubDate>
        </item>
        <item>
        	<title>Luigino on Event to inspect what is being posted on save</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3630</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3630</guid>
        	        	<description><![CDATA[<p>Thanks a lot Barry...</p>
<p>I never used HttpFox before but only Firebug.... and I find this HttpFox really really useful... just one little question.... when using a formedit which parameter of the function would make the formedit send submit&#39;s data to the .php file settled in the editurl parameter of the function?.....</p>
<p>Thanks</p>
<p>Ciao,</p>
<p>Luigi</p>
]]></description>
        	        	<pubDate>Sun, 21 Dec 2008 09:09:01 +0200</pubDate>
        </item>
        <item>
        	<title>Barry on Event to inspect what is being posted on save</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3474</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3474</guid>
        	        	<description><![CDATA[<p>I use Firefox with the HttpFox and Error Console add-ins to see what is going on.</p>
<p>I noticed that sometimes a java script syntax error can cause the javascript to terminate without giving an indication. Most of the time I can see the error in the Error Console. You could also have issues on the server, possibly not getting or sending back the correct data or format.</p>
<p>I&#39;m not sure I understood your situation to its fullest. Your URL must be working if you are producing a grid with data. So you put your grid in edit mode and then click save. It is at this point that you want to look at HttpFox and see exactly what was sent to the server and what was returned.</p>
<p>Barry</p>
]]></description>
        	        	<pubDate>Thu, 11 Dec 2008 13:47:05 +0200</pubDate>
        </item>
        <item>
        	<title>Luigino on Event to inspect what is being posted on save</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3470</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3470</guid>
        	        	<description><![CDATA[<p>Hello Barry,</p>
<p>excuse me if I&#39;m going to ask you a thing....</p>
<p>I saw your examples, for curiosity, and I figured they returns results on the grid...did you just settled the parameter url in the function or did you had to load some .js to make the url parameter working correctly?</p>
<p>Because, while debugging my application I have this function for example:</p>
<p>&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; jQuery(document).ready(function(){&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; jQuery("#list").jqGrid({ <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; url:&#39;/wp-content/plugins/toscanoviaggi/editing.php?q=2&#39;, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; datatype: &#39;xml&#39;, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; mtype: &#39;GET&#39;, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; colNames:[&#39;id&#39;, &#39;Citta\\&#39;&#39;], <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; colModel :[&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; {name:&#39;id&#39;, index:&#39;id&#39;, width:20, hidden:true, hidedlg:true},<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; {name:&#39;description&#39;, index:&#39;description&#39;, width:300, editable:true} ], <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; pager: jQuery(&#39;#pager&#39;), <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; rowNum:10, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; rowList:[10,20,30], <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; sortname: &#39;id&#39;, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; sortorder: "desc",<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; editurl: "/wp-content/plugins/toscanoviaggi/post.php?q=2",<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; viewrecords: true, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; imgpath: &#39;/wp-content/plugins/toscanoviaggi/themes/basic/images&#39;, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; caption: &#39;Toscano Viaggi&#39; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; }).navGrid(&#39;#pager&#39;, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; {search:false}, //options <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; {height:280,reloadAfterSubmit:true}, // edit options <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; {height:280,reloadAfterSubmit:true}, // add options <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160; {reloadAfterSubmit:true}, // del options <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {} // search options <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; );&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; });</p>
<p>and the strange thing is the function never goes into editing.php&#39;s url parameter because I put in the editing.php a little writing out file code to see if it passes but it didn&#39;t produced any files so it made me the doubt the url parameter doesn&#39;t work properly.</p>
<p>At least the grid appears on the page....</p>
<p>Any idea?</p>
<p>thanks</p>
<p>Ciao, Luigi</p>
]]></description>
        	        	<pubDate>Thu, 11 Dec 2008 01:30:43 +0200</pubDate>
        </item>
        <item>
        	<title>Barry on Event to inspect what is being posted on save</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3469</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3469</guid>
        	        	<description><![CDATA[<p>Tony,</p>
<p>Adding EditType:&#39;text&#39; changed the behavior, but the results are still not correct.</p>
<p><a href="http://sevenlakestennis.net/bug/p3/p.php" target="_blank">http://sevenlakestennis.net/bug/p3/p.php</a></p>
<p>I&#39;m still unclear as to what fixes you made. When will the next version be released.</p>
<p>Barry</p>
]]></description>
        	        	<pubDate>Wed, 10 Dec 2008 20:01:19 +0200</pubDate>
        </item>
        <item>
        	<title>tony on Event to inspect what is being posted on save</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3464</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3464</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Sorry and add condition for hidden fields.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Tue, 09 Dec 2008 10:53:04 +0200</pubDate>
        </item>
        <item>
        	<title>tony on Event to inspect what is being posted on save</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3463</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3463</guid>
        	        	<description><![CDATA[<p>Hello Barry,</p>
<p>We have speak about this bug. I have fixed them.</p>
<p>The only what is needed is to check what type is the field and if this</p>
<p>is not set to set the text as default. Your example will work if you</p>
<p>explicity set edittype: &#39; text&#39; of all editable fields instead that they are</p>
<p>hidden: true.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Tue, 09 Dec 2008 10:03:51 +0200</pubDate>
        </item>
        <item>
        	<title>Barry on Event to inspect what is being posted on save</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3462</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3462</guid>
        	        	<description><![CDATA[<p>Tony,</p>
<p>I prepared 2 examples for your review. Have a look.</p>
<p><a href="http://sevenlakestennis.net/bug/p1/p.php" rel="nofollow" target="_blank">http://sevenlakestennis.net/bug/p1/p.php</a></p>
<p><a href="http://sevenlakestennis.net/bug/p2/p.php" rel="nofollow" target="_blank">http://sevenlakestennis.net/bug/p2/p.php</a></p>
<p>Barry</p>
]]></description>
        	        	<pubDate>Tue, 09 Dec 2008 09:04:22 +0200</pubDate>
        </item>
        <item>
        	<title>tony on Event to inspect what is being posted on save</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3460</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3460</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>There is a diffrence only in checkbox - this is a known bug. Now I&#39;m going to inspect all the editing modules to behave the same way.</p>
<p>Thank you</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Tue, 09 Dec 2008 08:42:11 +0200</pubDate>
        </item>
        <item>
        	<title>tony on Event to inspect what is being posted on save</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3458</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3458</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Currently no. What are the differences - just tell me - the posted value</p>
<p>have this and in the grid&#160; have this value.&#160;</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Tue, 09 Dec 2008 08:23:19 +0200</pubDate>
        </item>
        <item>
        	<title>Barry on Event to inspect what is being posted on save</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3453</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3453</guid>
        	        	<description><![CDATA[<p>Tony,</p>
<p>You didn&#39;t answer my question! Actually I see that I did not ask my question good.</p>
<p>Is there a way I can get the data that is going to be posted on the save Row?</p>
<p>Like I said above I am currently displaying the contents of RowData on the&#160; afterSaveFunc but these values are not the same as those being posted.</p>
<p>Barry</p>
]]></description>
        	        	<pubDate>Tue, 09 Dec 2008 07:20:13 +0200</pubDate>
        </item>
        <item>
        	<title>tony on Event to inspect what is being posted on save</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3444</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3444</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>If you give me example it will be good.</p>
<p>Thank you.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Tue, 09 Dec 2008 06:42:52 +0200</pubDate>
        </item>
        <item>
        	<title>Barry on Event to inspect what is being posted on save</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3432</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/event-to-inspect-what-is-being-posted-on-save#p3432</guid>
        	        	<description><![CDATA[<p>Tony,</p>
<p>I&#39;ve been working on a few pages to demonstrate what I think might be issues. I will share that with you when I get finished.</p>
<p>I want to be able to show the values being posted on saveRow. I am currently displaying the contents of RowData on the&#160; afterSaveFunc but these values are not the same as those being posted.</p>
<p>Thanks</p>
<p>Barry</p>
]]></description>
        	        	<pubDate>Fri, 05 Dec 2008 10:31:25 +0200</pubDate>
        </item>
</channel>
</rss>