<?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: Pass parameters to Wcf restful service through JQGrid urgent</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/pass-parameters-to-wcf-restful-service-through-jqgrid-urgent</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/pass-parameters-to-wcf-restful-service-through-jqgrid-urgent/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>manjushree.nimbalkar on Pass parameters to Wcf restful service through JQGrid urgent</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/pass-parameters-to-wcf-restful-service-through-jqgrid-urgent#p27455</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/pass-parameters-to-wcf-restful-service-through-jqgrid-urgent#p27455</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>With the above code now I want to dynamically add the columns. The colNames and colModel will come through the service. Will you please let me know how to do it?</p>
</p>
<p>Thanks in Advance,</p>
<p>Manju</p></p>
]]></description>
        	        	<pubDate>Mon, 01 Oct 2012 22:14:05 +0300</pubDate>
        </item>
        <item>
        	<title>manjushree.nimbalkar on Pass parameters to Wcf restful service through JQGrid urgent</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/pass-parameters-to-wcf-restful-service-through-jqgrid-urgent#p27453</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/pass-parameters-to-wcf-restful-service-through-jqgrid-urgent#p27453</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>I was not able to pass parameters to WCF service. This is how i did it:</p>
</p>
<p>function&#160;successFunction(jsondata)&#160;{</p>
<p>&#160;&#160;&#160;&#160;var&#160;thegrid&#160;=&#160;jQuery("#tblInfo")[0];</p>
<p>&#160;&#160;&#160;&#160;thegrid.addJSONData(jsondata.GetInfoResult);</p>
<p>}</p>
</p>
<p>function&#160;getInfo(pdata)&#160;{</p>
<p>&#160;&#160;&#160;&#160;var&#160;data&#160;=&#160;[];</p>
<p>&#160;&#160;&#160;&#160;data.push({&#160;Key:&#160;"rows",&#160;Value:&#160;pdata.rows&#160;});</p>
<p>&#160;&#160;&#160;&#160;data.push({&#160;Key:&#160;"page",&#160;Value:&#160;pdata.page&#160;});</p>
<p>&#160;&#160;&#160;&#160;data.push({&#160;Key:&#160;"sidx",&#160;Value:&#160;pdata.sidx&#160;});</p>
<p>&#160;&#160;&#160;&#160;data.push({&#160;Key:&#160;"sord",&#160;Value:&#160;pdata.sord&#160;});</p>
<p>&#160;&#160;&#160;&#160;data.push({&#160;Key:&#160;"ddlinfostatus",&#160;Value:&#160;"1"&#160;});</p>
<p>&#160;&#160;&#160;&#160;data.push({&#160;Key:&#160;"search",&#160;Value:&#160;pdata._search&#160;});</p>
</p>
<p>&#160;&#160;&#160;&#160;var&#160;dictObject&#160;=&#160;{&#160;nvp:&#160;data&#160;};</p>
</p>
<p>&#160;&#160;&#160;&#160;var&#160;_url&#160;=&#160;"Services/Info.svc/GetInfo"</p>
</p>
<p>&#160;&#160;&#160;&#160;$.ajax({</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;url:&#160;_url,</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;data:&#160;JSON.stringify(dictObject),</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;dataType:&#160;"json",</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;type:&#160;"POST",</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;contentType:&#160;"application/json;&#160;charset=utf-8",</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;success:&#160;successFunction,</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;error:&#160;function&#160;(jsondata)&#160;{</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;alert(&#39;error&#39;);</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;}</p>
<p>&#160;&#160;&#160;&#160;});</p>
<p>}</p>
</p>
<p>function&#160;loadGrid()&#160;{</p>
</p>
<p>&#160;&#160;&#160;&#160;jQuery("#tblinfo").jqGrid({</p>
</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;datatype:&#160;function&#160;(pdata)&#160;{</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;getInfo(pdata);&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;//&#160;calls&#160;the&#160;function&#160;above&#160;with&#160;&#39;postData&#39;&#160;</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;},</p>
</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;colNames:&#160;[&#39;Sk&#39;,&#160;Id&#39;,&#160;],</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;colModel:&#160;[{&#160;name:&#160;sk&#39;,&#160;index:&#160;sk&#39;,&#160;width:&#160;20&#160;},</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;{&#160;name:&#160;&#39;id&#39;,&#160;index:&#160;&#39;id&#39;,&#160;width:&#160;200&#160;}],</p>
</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;jsonReader:&#160;{&#160;repeatitems:&#160;false,</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;root:&#160;function&#160;(obj)&#160;{&#160;return&#160;JSON.parse(obj.rows);&#160;},</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;page:&#160;function&#160;(obj)&#160;{&#160;return&#160;obj.page;&#160;},</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;total:&#160;function&#160;(obj)&#160;{&#160;return&#160;obj.total;&#160;},</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;records:&#160;function&#160;(obj)&#160;{&#160;return&#160;obj.records;&#160;},</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;id:&#160;&#39;0&#39;,</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;cell:&#160;&#39;&#39;</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;},</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;width:&#160;500,</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;height:&#160;200,</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;rowList:&#160;[10,&#160;20,&#160;30],</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;rowNum:&#160;10,</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;sortname:&#160;&#39;sk&#39;,</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;emptyrecords:&#160;"No&#160;records&#160;to&#160;view",</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;sortorder:&#160;"asc",</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;viewrecords:&#160;true,</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;pager:&#160;&#39;#pager&#39;,</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;caption:&#160;"",</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;loadtext:&#160;"Loading....",</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;sortable:&#160;true</p>
<p>&#160;&#160;&#160;&#160;});</p>
<p>}</p>
</p>
<p>Thanks,</p>
<p>Manju</p>
]]></description>
        	        	<pubDate>Mon, 01 Oct 2012 21:15:32 +0300</pubDate>
        </item>
        <item>
        	<title>tony on Pass parameters to Wcf restful service through JQGrid urgent</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/pass-parameters-to-wcf-restful-service-through-jqgrid-urgent#p27440</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/pass-parameters-to-wcf-restful-service-through-jqgrid-urgent#p27440</guid>
        	        	<description><![CDATA[<p>Hello,</p>
</p>
<p>Just for the record - please post what was the problem and how you have resolved it.</p>
<p>Thank you.</p>
</p>
<p>Regards</p>
]]></description>
        	        	<pubDate>Sat, 29 Sep 2012 10:33:05 +0300</pubDate>
        </item>
        <item>
        	<title>manjushree.nimbalkar on Pass parameters to Wcf restful service through JQGrid urgent</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/pass-parameters-to-wcf-restful-service-through-jqgrid-urgent#p27436</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/pass-parameters-to-wcf-restful-service-through-jqgrid-urgent#p27436</guid>
        	        	<description><![CDATA[<p>Hello,</p>
</p>
<p>The problem is solved. Thanks for the reply in earlier post.</p>
</p>
<p>Manjushree</p>
]]></description>
        	        	<pubDate>Sat, 29 Sep 2012 00:47:33 +0300</pubDate>
        </item>
        <item>
        	<title>manjushree.nimbalkar on Pass parameters to Wcf restful service through JQGrid urgent</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/pass-parameters-to-wcf-restful-service-through-jqgrid-urgent#p27433</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/pass-parameters-to-wcf-restful-service-through-jqgrid-urgent#p27433</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Thanks for quick reply. I have already tried sending data with and without JSON.stringify.</p>
<p>Service is not called somehow. IN normal case, if I have to send parameters to the service method I use</p>
<p>"data" parameter. Is it something related to that?</p>
<p>Waiting for reply.</p>
<p>Thanks,</p>
<p>Manjushree</p>
]]></description>
        	        	<pubDate>Fri, 28 Sep 2012 17:10:02 +0300</pubDate>
        </item>
        <item>
        	<title>tony on Pass parameters to Wcf restful service through JQGrid urgent</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/pass-parameters-to-wcf-restful-service-through-jqgrid-urgent#p27430</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/pass-parameters-to-wcf-restful-service-through-jqgrid-urgent#p27430</guid>
        	        	<description><![CDATA[<p>Hello,</p>
</p>
<p>serializeGridData should return the same data as it accept as parameter - i.e not string - with other words replace</p>
</p>
<p>return JSON.stringify(dataToSend);</p>
</p>
<p>with</p>
<p>return dataToSend;</p>
</p>
<p>Regards</p>
]]></description>
        	        	<pubDate>Fri, 28 Sep 2012 08:46:37 +0300</pubDate>
        </item>
        <item>
        	<title>manjushree.nimbalkar on Pass parameters to Wcf restful service through JQGrid urgent</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/pass-parameters-to-wcf-restful-service-through-jqgrid-urgent#p27416</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/pass-parameters-to-wcf-restful-service-through-jqgrid-urgent#p27416</guid>
        	        	<description><![CDATA[<p>Thanks for the reply. Yes with pure Ajax service accept the parameter.&#160;</p>
<p>Let me give the example:</p>
<p>In VS 2010 I have added WCF service.</p>
<pre>Public&#160;Function&#160;GetInfo(sidx&#160;As&#160;String,&#160;sord&#160;As&#160;String,&#160;page&#160;As&#160;Integer,&#160;rows&#160;As&#160;Integer, infoid As&#160;String,&#160;nd&#160;As&#160;Integer,&#160;_search&#160;As&#160;Boolean) <br />As InfoDataForJqGrid&#160;Implements&#160;IInfo.GetInfo<br /><br />End Function <br /><br />The binding used is "webHttpBinding".<br /><br />In Html i&#39;m trying to send the parameter to the WCF service. But not sure how to do this. I have used below option:<br /></pre>
<pre> 
function&#160;loadGrid()&#160;{
&#160;&#160;&#160;&#160;jQuery("#tblInfo").jqGrid({
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;url:&#160;&#39;Services/Service.svc/getInfo&#39;,
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;postData:&#160;{
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; infoid :&#160;function&#160;()&#160;{
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;return&#160;"1";&#160;//&#160;$("#infoid ").val();
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;}
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;},
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;mtype:&#160;&#39;POST&#39;,
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;datatype:&#160;&#39;json&#39;,
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;ajaxGridOptions:&#160;{&#160;contentType:&#160;"application/json"&#160;},
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;serializeGridData:&#160;function&#160;(postData)&#160;{
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;var&#160;propertyName,&#160;propertyValue,&#160;dataToSend&#160;=&#160;{};
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;for&#160;(propertyName&#160;in&#160;postData)&#160;{
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;if&#160;(postData.hasOwnProperty(propertyName))&#160;{
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;propertyValue&#160;=&#160;postData[propertyName];
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;if&#160;($.isFunction(propertyValue))&#160;{
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;dataToSend[propertyName]&#160;=&#160;propertyValue();
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;}&#160;else&#160;{
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;dataToSend[propertyName]&#160;=&#160;propertyValue
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;}
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;}
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;}
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;return&#160;JSON.stringify(dataToSend);
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;},
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;jsonReader:&#160;{
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;root:&#160;"d.rows",
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;page:&#160;"d.page",
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;total:&#160;"d.total",
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;records:&#160;"d.records"
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;},
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;colNames:&#160;[&#39;Code&#39;,&#160;&#39;Title&#39;,&#160;&#39;Price&#39;,&#160;&#39;Product&#160;Group&#39;,&#160;&#39;Edit&#39;,&#160;&#39;Status&#39;],
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;colModel:&#160;[
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;{&#160;name:&#160;&#39;Code&#39;,&#160;index:&#160;&#39;Code&#39;,&#160;width:&#160;75,&#160;align:&#160;&#39;center&#39;&#160;},
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;{&#160;name:&#160;&#39;Title&#39;,&#160;index:&#160;&#39;Title&#39;,&#160;width:&#160;40,&#160;align:&#160;&#39;center&#39;&#160;},
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;{&#160;name:&#160;&#39;Price&#39;,&#160;index:&#160;&#39;Price&#39;,&#160;width:&#160;55&#160;},
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;{&#160;name:&#160;&#39;Product&#160;Group&#39;,&#160;index:&#160;&#39;Product&#160;Group&#39;,&#160;width:&#160;100&#160;},
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;{&#160;name:&#160;&#39;Edit&#39;,&#160;index:&#160;&#39;Edit&#39;,&#160;width:&#160;40&#160;},
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;{&#160;name:&#160;&#39;Status&#39;,&#160;index:&#160;&#39;Status&#39;,&#160;width:&#160;40}],
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;pager:&#160;&#39;#pager&#39;,
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;rowList:&#160;[10,&#160;20,&#160;30],
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;sortname:&#160;&#39;Code&#39;,
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;sortorder:&#160;&#39;desc&#39;,
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;rowNum:&#160;10,
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;loadtext:&#160;"Loading....",
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;shrinkToFit:&#160;false,
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;multiselect:&#160;true,
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;emptyrecords:&#160;"No&#160;records&#160;to&#160;view",
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;//width:&#160;x&#160;-&#160;40,
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;height:&#160;"auto",
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;rownumbers:&#160;true,
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;//subGrid:&#160;true,
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;caption:&#160;&#39;Products&#39;
&#160;&#160;&#160;&#160;});
&#160;&#160;&#160;&#160;jQuery("#prodgrid").jqGrid(&#39;navGrid&#39;,&#160;&#39;#pager&#39;,
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;{&#160;edit:&#160;false,&#160;add:&#160;false,&#160;del:&#160;true,&#160;excel:&#160;true,&#160;search:&#160;false&#160;});
&#160;&#160;&#160;&#160;//});
}<br /><br /><br />Now in the seralizeGridData i get the proper string, but service is not getting called. <br />It gives error "500 INternal server error". This works fine if I have Ajax enabled wcf service.<br />Please let me know what I&#39;m missing here.<br />Thanks for quick reply.<br />Manju</pre>
]]></description>
        	        	<pubDate>Thu, 27 Sep 2012 17:27:02 +0300</pubDate>
        </item>
        <item>
        	<title>tony on Pass parameters to Wcf restful service through JQGrid urgent</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/pass-parameters-to-wcf-restful-service-through-jqgrid-urgent#p27399</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/pass-parameters-to-wcf-restful-service-through-jqgrid-urgent#p27399</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Sorry, but you do not provide a example?</p>
<p>Why your service can not accept this parameters.</p>
<p>If yyou try with pure ajax does the service accept parameters?</p>
</p>
<p>Not sure that I understand the problem</p>
<p>Regards</p>
]]></description>
        	        	<pubDate>Thu, 27 Sep 2012 13:12:25 +0300</pubDate>
        </item>
        <item>
        	<title>manjushree.nimbalkar on Pass parameters to Wcf restful service through JQGrid urgent</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/pass-parameters-to-wcf-restful-service-through-jqgrid-urgent#p27391</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/pass-parameters-to-wcf-restful-service-through-jqgrid-urgent#p27391</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>I have WCf service (it is normal WCF service not Ajax enabled) which accepts various parameter. Through Jqgrid in SerializeGridData I can send the parameters to Ajax enabled wcf service. But my normal WCF service dosen&#39;t work with this. Is there any way how I can send parameters to my WCF service. I tried lot of things but didn&#39;t work.</p>
<p>Please help.</p>
<p>Thanks in advance.</p>
<p>Manju</p></p>
]]></description>
        	        	<pubDate>Thu, 27 Sep 2012 00:21:40 +0300</pubDate>
        </item>
</channel>
</rss>