<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Using jqGrid with ASP.NET MVC: Deleting Records</title>
	<atom:link href="http://blogs.teamb.com/craigstuntz/2009/04/29/38266/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.teamb.com/craigstuntz/2009/04/29/38266/</link>
	<description>C# • Entity Framework • Functional Programming • MVC • Web</description>
	<pubDate>Sat, 11 Feb 2012 15:42:35 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Using jqGrid with ASP.NET MVC &#124; Tuấn&#39;s blog</title>
		<link>http://blogs.teamb.com/craigstuntz/2009/04/29/38266/#comment-31872</link>
		<dc:creator>Using jqGrid with ASP.NET MVC &#124; Tuấn&#39;s blog</dc:creator>
		<pubDate>Thu, 21 Jul 2011 03:28:35 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.teamb.com/craigstuntz/?p=38266#comment-31872</guid>
		<description>[...] jqGrid with ASP.NET MVC: Finally, A Solution  Using jqGrid with ASP.NET MVC: Search and Formatting  Using jqGrid with ASP.NET MVC: Deleting Records  Using jqGrid with ASP.NET MVC: Understanding LINQ Errors      This entry was posted in Links and [...]</description>
		<content:encoded><![CDATA[<p>[...] jqGrid with ASP.NET MVC: Finally, A Solution  Using jqGrid with ASP.NET MVC: Search and Formatting  Using jqGrid with ASP.NET MVC: Deleting Records  Using jqGrid with ASP.NET MVC: Understanding LINQ Errors      This entry was posted in Links and [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hernan</title>
		<link>http://blogs.teamb.com/craigstuntz/2009/04/29/38266/#comment-25383</link>
		<dc:creator>Hernan</dc:creator>
		<pubDate>Tue, 15 Mar 2011 22:47:09 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.teamb.com/craigstuntz/?p=38266#comment-25383</guid>
		<description>Hi, your post about jqGrid is great! Can you add an edit form with more fields? Like date field with js calendar and also would be cool if you can implement the excel export function.
Great job!</description>
		<content:encoded><![CDATA[<p>Hi, your post about jqGrid is great! Can you add an edit form with more fields? Like date field with js calendar and also would be cool if you can implement the excel export function.<br />
Great job!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Craig Stuntz</title>
		<link>http://blogs.teamb.com/craigstuntz/2009/04/29/38266/#comment-17190</link>
		<dc:creator>Craig Stuntz</dc:creator>
		<pubDate>Fri, 09 Jul 2010 14:00:10 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.teamb.com/craigstuntz/?p=38266#comment-17190</guid>
		<description>Tahir, both syntaxes are supported. In your case, the second call does not re-initialize the grid; it just calls &lt;code&gt;navGrid&lt;/code&gt; like mine does. Either way is fine. The second syntax was added for consistency with jQuery UI.</description>
		<content:encoded><![CDATA[<p>Tahir, both syntaxes are supported. In your case, the second call does not re-initialize the grid; it just calls <code>navGrid</code> like mine does. Either way is fine. The second syntax was added for consistency with jQuery UI.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tahir Hassan</title>
		<link>http://blogs.teamb.com/craigstuntz/2009/04/29/38266/#comment-17189</link>
		<dc:creator>Tahir Hassan</dc:creator>
		<pubDate>Fri, 09 Jul 2010 13:57:37 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.teamb.com/craigstuntz/?p=38266#comment-17189</guid>
		<description>Just as a note to add, with the newest version of JqGrid, the syntax has changed somewhat.  We now initialize it it twice, with the second call passing the string 'navGrid' as the first argument:

JQuery('#list')
       .jqGrid( { url: ... })
       .jqGrid('navGrid', '#pager', { edit: false, add: false, del: true, search: false },  {}, {},  { url: "/Home/Delete" });</description>
		<content:encoded><![CDATA[<p>Just as a note to add, with the newest version of JqGrid, the syntax has changed somewhat.  We now initialize it it twice, with the second call passing the string &#8216;navGrid&#8217; as the first argument:</p>
<p>JQuery(&#8217;#list&#8217;)<br />
       .jqGrid( { url: &#8230; })<br />
       .jqGrid(&#8217;navGrid&#8217;, &#8216;#pager&#8217;, { edit: false, add: false, del: true, search: false },  {}, {},  { url: "/Home/Delete" });</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bhavin patel</title>
		<link>http://blogs.teamb.com/craigstuntz/2009/04/29/38266/#comment-16317</link>
		<dc:creator>bhavin patel</dc:creator>
		<pubDate>Tue, 11 May 2010 10:32:27 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.teamb.com/craigstuntz/?p=38266#comment-16317</guid>
		<description>Hi Craig,
i am trying ur code but and its open the new window for the delete the particular record but when i pressed the delete button for delete the record it throws this error-"error Status: Internal Server Error Error code: 500" so how can i solve that error? what mistake i made can you guide me regarding that?
i need urgent solutions for that.


&lt;blockquote&gt;&lt;em&gt;&lt;strong&gt;Response: &lt;/strong&gt; Since &lt;a href="http://ericdotnet.wordpress.com/2009/05/02/editing-in-jqgrid-with-aspnet-mvc/#comments" rel="nofollow"&gt;you appear to be having exactly the same error with someone else's code&lt;/a&gt;, I'd say the chances are high that the code in my demo is not the problem. 500 means the server is throwing an unhandled exception, usually. Debug your application.&lt;/em&gt;&lt;/blockquote&gt;

</description>
		<content:encoded><![CDATA[<p>Hi Craig,<br />
i am trying ur code but and its open the new window for the delete the particular record but when i pressed the delete button for delete the record it throws this error-"error Status: Internal Server Error Error code: 500" so how can i solve that error? what mistake i made can you guide me regarding that?<br />
i need urgent solutions for that.</p>
<blockquote><p><em><strong>Response: </strong> Since <a href="http://ericdotnet.wordpress.com/2009/05/02/editing-in-jqgrid-with-aspnet-mvc/#comments" rel="nofollow">you appear to be having exactly the same error with someone else&#8217;s code</a>, I&#8217;d say the chances are high that the code in my demo is not the problem. 500 means the server is throwing an unhandled exception, usually. Debug your application.</em></p></blockquote>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marko</title>
		<link>http://blogs.teamb.com/craigstuntz/2009/04/29/38266/#comment-12552</link>
		<dc:creator>Marko</dc:creator>
		<pubDate>Tue, 15 Dec 2009 11:37:33 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.teamb.com/craigstuntz/?p=38266#comment-12552</guid>
		<description>thank you for tips :)</description>
		<content:encoded><![CDATA[<p>thank you for tips <img src='http://blogs.teamb.com/craigstuntz/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MHoque</title>
		<link>http://blogs.teamb.com/craigstuntz/2009/04/29/38266/#comment-10006</link>
		<dc:creator>MHoque</dc:creator>
		<pubDate>Wed, 07 Oct 2009 12:39:59 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.teamb.com/craigstuntz/?p=38266#comment-10006</guid>
		<description>Did you ever got the inline "Add" working? Will you be able to share the link please. I am not looking for inline "edit" or form 'Add". I am looking for the inline "Add"</description>
		<content:encoded><![CDATA[<p>Did you ever got the inline "Add" working? Will you be able to share the link please. I am not looking for inline "edit" or form &#8216;Add". I am looking for the inline "Add"</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill Bartmann</title>
		<link>http://blogs.teamb.com/craigstuntz/2009/04/29/38266/#comment-9447</link>
		<dc:creator>Bill Bartmann</dc:creator>
		<pubDate>Sun, 06 Sep 2009 05:19:19 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.teamb.com/craigstuntz/?p=38266#comment-9447</guid>
		<description>Hey good stuff...keep up the good work! :)</description>
		<content:encoded><![CDATA[<p>Hey good stuff&#8230;keep up the good work! <img src='http://blogs.teamb.com/craigstuntz/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Craig Stuntz</title>
		<link>http://blogs.teamb.com/craigstuntz/2009/04/29/38266/#comment-9444</link>
		<dc:creator>Craig Stuntz</dc:creator>
		<pubDate>Fri, 04 Sep 2009 00:55:53 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.teamb.com/craigstuntz/?p=38266#comment-9444</guid>
		<description>Yes, Sean. In My Ample Spare Time. Which means: not soon, but eventually...</description>
		<content:encoded><![CDATA[<p>Yes, Sean. In My Ample Spare Time. Which means: not soon, but eventually&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean</title>
		<link>http://blogs.teamb.com/craigstuntz/2009/04/29/38266/#comment-9443</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Thu, 03 Sep 2009 21:18:28 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.teamb.com/craigstuntz/?p=38266#comment-9443</guid>
		<description>Are you going to do a follow up showing how editing is done?</description>
		<content:encoded><![CDATA[<p>Are you going to do a follow up showing how editing is done?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

