<?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: custom unformat</title>
	<link>http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat</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/bugs/custom-unformat/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on custom unformat</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p11217</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p11217</guid>
        	        	<description><![CDATA[<p>Hello</p>
<p>@Kedar a good start is a documentation.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Thu, 29 Oct 2009 02:53:00 +0200</pubDate>
        </item>
        <item>
        	<title>Kedar on custom unformat</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p11177</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p11177</guid>
        	        	<description><![CDATA[<p>Hi Tony,</p>
<p>I want to pass extra parameters to the server in addition to &#39;page&#39;,&#39;rows&#39;,&#39;sord&#39;,&#39;sidx&#39;.</p>
<p>Please specify what should I do.</p>
<p>Regards,</p>
<p>Kedar</p>
]]></description>
        	        	<pubDate>Wed, 28 Oct 2009 07:45:42 +0200</pubDate>
        </item>
        <item>
        	<title>jack_s on custom unformat</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p10821</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p10821</guid>
        	        	<description><![CDATA[<p>thanks tony!&#160; the cellobject parameter works beautifully.&#160;&#160;&#160;&#160; It just what I needed - with cellobject we can do all kinds of cool things in grid cells now!</p>
<p>best regards,</p>
<p>jack</p>
]]></description>
        	        	<pubDate>Sun, 18 Oct 2009 23:05:56 +0300</pubDate>
        </item>
        <item>
        	<title>tony on custom unformat</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p10813</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p10813</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>See the problem. I have added a 3 parameter to the unformat function (present in GitHub 3.6 branch)- cellobject, so you can use it in the custom unformat function like this $(cellobject).html() or whatever you want.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Sun, 18 Oct 2009 04:53:42 +0300</pubDate>
        </item>
        <item>
        	<title>tony on custom unformat</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p10812</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p10812</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>We have created the formatter so that it can be aesy extended with your own format/unformat function.</p>
<p>We make it so, because it is not possible to meet all user specific requierments.</p>
<p>Also to extend the formatter you just need to do</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit1382' value='Select Code' data-codeid='sfcode1382' /></p>
<div class='sfcode' id='sfcode1382'>
<p>$.extend($.fn.fmatter , {</p>
<p>myformatter : function (cellval, options) {</p>
<p>// do something</p>
<p>return formated_value;</p>
<p>}</p>
<p>});</p>
<p>$.extend($.fn.fmatter.myformatter ,{</p>
<p>unformat : function (cell, options ) {</p>
<p>// do something</p>
<p>return unformated_value;</p>
<p>}</p>
<p>});</p>
<p>then you will need just to set in colModel</p>
<p>colModel :[</p>
<p>...</p>
<p>{ name:&#39;some&#39;, formatter:&#39;myformatter&#39;...},</p>
<p>...</p>
<p>]</p>
</p>
</div>
<p>Note that this formatter can be used everywhere in your code.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Sun, 18 Oct 2009 04:04:47 +0300</pubDate>
        </item>
        <item>
        	<title>jack_s on custom unformat</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p10806</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p10806</guid>
        	        	<description><![CDATA[<p>I&#39;ve been tracing through the code with Firebug for hours and I think I finally found my problem.&#160; I&#39;m formatting the data in a field, &#160;which contains data that is a URL for an image, into an&#160;IMG element so I can display the image in the grid.&#160; So the problem for me is on line 332 of the &#39;jquery.fmatter.js&#39; &#160;file where :</p>
<p><span class="sourceRowText"><em>ret = unformatFunc($(cellval).text(), options);</em></span></p>
<p><span class="sourceRowText"><em></em></span></p>
<p><span class="sourceRowText"><em>$(cellval).text()</em>&#160; returns an empty string.&#160; In order for my program to work I&#39;d need&#160; <em>$(cellval).html()</em></span></p>
<p><span class="sourceRowText"><em></em></span></p>
<p><span class="sourceRowText">So I guess I&#39;m using formatter/unformat feature &#160;inappropriately.&#160;&#160; </span></p>
<p><span class="sourceRowText">Is the best way to display images in a grid (assuming the image url data is editable) to use an extra column to display the image and hide the column that holds the actual URL&#160; ?&#160; </span></p>
</p>
<p><span class="sourceRowText">Is there any possibility of changing the code to accommodate image formatting into IMG tags and unformatting for editting? that would be nice - thanks!</span></p>
]]></description>
        	        	<pubDate>Sat, 17 Oct 2009 19:36:47 +0300</pubDate>
        </item>
        <item>
        	<title>jack_s on custom unformat</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p10670</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p10670</guid>
        	        	<description><![CDATA[<p>I&#39;m hosed.</p>
<p>&#160; I guess when you restore the SRC files, I plan to setup my development environment as described on the "Installation" page and see if that fixes the problem.&#160;</p>
]]></description>
        	        	<pubDate>Mon, 12 Oct 2009 19:02:00 +0300</pubDate>
        </item>
        <item>
        	<title>jack_s on custom unformat</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p10567</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p10567</guid>
        	        	<description><![CDATA[<p>Tony -&#160;here&#39;s the grid and the&#160;un/format function.&#160;&#160; The unformat function is called but what is weird is that both "return cellvalue" and omitting the "return" alltogether result in the formated value appearing in that field on the Edit form.&#160;&#160; But if you do "return &#39;somevalue&#39; "&#160; - that value appears in the field...&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Here&#39;s the inlude files i&#39;m using so you can see if they way they are ordered is the problem.&#160; thanks for your help - jack</p>
<p>&#60;script src="jquery.js" type="text/javascript"&#62;&#60;/script&#62;<br />&#60;script src="js/i18n/grid.locale-en.js" type="text/javascript"&#62;&#60;/script&#62;<br />&#60;script src="js/jquery-ui-1.7.1.custom.min.js" type="text/javascript"&#62;&#60;/script&#62;<br />&#60;script src="jquery.jqGrid.js" type="text/javascript"&#62;&#60;/script&#62;<br />&#60;script src="js/jqModal.js" type="text/javascript"&#62;&#60;/script&#62;<br />&#60;script src="jquery.validate.js" type="text/javascript"&#62;&#60;/script&#62;<br />&#60;script src="lib/jquery.form.js" type="text/javascript"&#62;&#60;/script&#62;<br />&#60;script src="ui/ui.core.js" type="text/javascript"&#62;&#60;/script&#62;<br />&#60;script src="ui/effects.core.js" type="text/javascript"&#62;&#60;/script&#62;<br />&#60;script src="ui/ui.draggable.js" type="text/javascript"&#62;&#60;/script&#62;<br />&#60;script src="ui/ui.resizable.js" type="text/javascript"&#62;&#60;/script&#62;<br />&#60;script src="ui/ui.dialog.js" type="text/javascript"&#62;&#60;/script&#62;<br />&#60;script src="js/jqDnR.js" type="text/javascript"&#62;&#60;/script&#62;</p>
<p>&#60;script src="jquery.tablednd_0_5.js" type="text/javascript"&#62;&#60;/script&#62; <br />&#60;script type="text/javascript" src="js/jquery.cookie.js"&#62;&#60;/script&#62;<br />&#60;script src="jquery.simpleImageCheck-0.1.min.js" type="text/javascript"&#62;&#60;/script&#62;</p>
</p>
<p>&#160;// Format webpage col links functions&#160;&#160;<br />&#160;function plantPicFmatter (cellvalue, options, rowObject) {<br />&#160;&#160;cellvalue = &#39;&#60;img src="&#39; + cellvalue + &#39;" width="100"/&#62;&#39; ;<br />&#160;&#160; &#160;&#160;return cellvalue;<br />&#160;}<br />&#160;function&#160; unformatPic (cellvalue, options)&#160; {</p>
<p>return cellvalue;<br />&#160;}<br />&#160;</p>
<p>&#160;var mygrid = $("#list").jqGrid(&#160;&#160;&#160;{<br />&#160;&#160;&#160;&#160;<a href="&#39;../com/jweblists.cfc?method=getMemberList&#38;memberListID=&#39;" target="_blank">url:&#39;../com/jweblists.cfc?method=getMemberList&#38;memberListID=&#39;</a> + listID, //CFC that will return all data for a particular weblist<br />&#160;&#160;&#160;&#160;datatype: &#39;json&#39;, //We specify that the datatype we will be using will be JSON<br />&#160;&#160;&#160;&#160;colNames:[&#39;ItemID&#39;,&#39;ListID&#39;, &#39;FDID&#39;, &#39;Botanical Name&#39;, &#39;Common Names&#39;, &#39;Webpage&#39;, &#39;Member Note&#39;, &#39;Image&#39;,&#160;&#160;&#160;&#160; &#39;adddate&#39;, &#39;lastupdate&#39;, &#39;Item Title&#39;, &#39;seqnum&#39;], //Column Names<br />&#160;&#160;&#160;&#160;colModel :[<br />&#160;&#160;&#160;&#160;&#160;{name:&#39;ItemID&#39;,index:&#39;listItemID&#39;, sorttype:&#39;int&#39;, width:30, key:true, editable:true,&#160; editoptions:{disabled:true, size:5, maxlength:5 }},<br />&#160;&#160;&#160;&#160;&#160;{name:&#39;memberListID&#39;, index:&#39;memberListID&#39;, width:30, hidden:true, editable:true,&#160; editoptions:{size:5, maxlength:5, disabled:true }, editrules:{edithidden:true}},<br />&#160;&#160;&#160;&#160;&#160;{name:&#39;fdid&#39;, index:&#39;fdid&#39;, sorttype:&#39;int&#39;, width:30, search:true, editable:true,&#160; editoptions:{size:5, maxlength:5}, editrules:{edithidden:true, number:true}},<br />&#160;&#160;&#160;&#160;&#160;{name:&#39;fname&#39;,index:&#39;fname&#39;,&#160; width:100, editable:true, sorttype:&#39;text&#39;,editoptions:{size:45, maxlength:100 }},&#160;<br />&#160;&#160;&#160;&#160;&#160;{name:&#39;commonNameList&#39;, index:&#39;commonNameList&#39;, sorttype:&#39;text&#39;, width:175, editable:true, editoptions:{size:45, maxlength:100 }},&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;<br />&#160;&#160;&#160;&#160;&#160;{name:&#39;webpage&#39;,index:&#39;webpage&#39;,&#160; width:30, editable:&#39;true&#39;, hidden:true, editrules:{edithidden:true, required:false}, editoptions:{size:15, maxlength:100 } },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;<br />&#160;&#160;&#160;&#160;&#160;{name:&#39;membernote&#39;,index:&#39;membernote&#39;, sorttype:&#39;text&#39;, editable:true, hidden:true, edittype:&#39;textarea&#39;, editoptions:{rows:"2",cols:"45", maxlength:2000}, editrules:{edithidden:true, required:false} },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;<br />&#160;&#160;&#160;&#160;&#160;{name:&#39;picpath&#39;,index:&#39;picpath&#39;,&#160; width:110, search:false, sorttype:"text", editable:true, editoptions:{size:45, maxlength:100}, <span style="color: #ff0000;">formatter: plantPicFmatter, unformat: unformatPic </span>},<br />&#160;&#160;&#160;&#160;&#160;<br />&#160;&#160;&#160;&#160;&#160;{name:&#39;addDate&#39;,index:&#39;addDate&#39;,&#160; hidden:true}, <br />&#160;&#160;&#160;&#160;&#160;{name:&#39;lastupdate&#39;,index:&#39;lastupdate&#39;, hidden:true},&#160;<br />&#160;&#160;&#160;&#160;&#160;{name:&#39;itemtitle&#39;,index:&#39;itemtitle&#39;, sorttype:&#39;text&#39;,&#160; search:true, width:150, editable:true, editoptions:{size:45, maxlength:100}},&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;<br />&#160;&#160;&#160;&#160;&#160;{name:&#39;seqnum&#39;,index:&#39;seqnum&#39;, sorttype:&#39;int&#39;, hidden:true}&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;<br />&#160;&#160;&#160;&#160;],&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;<br />&#160;&#160;&#160;&#160;pager: $(&#39;#pager&#39;), <br />&#160;&#160;&#160;&#160;toolbar : [true,&#160; &#39;top&#39;],<br />&#160;&#160;&#160;&#160;rowNum:10, //Number of records we want to show per page<br />&#160;&#160;&#160;&#160;rowList:[5,10,20,25,50], //Row List, to allow user to select how many rows they want to see per page<br />&#160;&#160;&#160;&#160;sortorder: &#39;asc&#39;, //Default sort order<br />&#160;&#160;&#160;&#160;sortname: &#39;fname&#39;, //Default sort column<br />&#160;&#160;&#160;&#160;viewrecords: true, //Shows the nice message on the pager<br />&#160;&#160;&#160;&#160;imgpath: &#39;../css/custom-theme/images&#39;, //Image path for prev/next etc images<br />&#160;&#160;&#160;&#160;caption: &#39;Floridata List item&#160;Editor&#39;, //Grid Name<br />&#160;&#160;&#160;&#160;hoverrows: false,<br />&#160;&#160;&#160;&#160;width: &#39;auto&#39;,<br />&#160;&#160;&#160;&#160;height:&#39;auto&#39;, //I like auto, so there is no blank space between.<br />&#160;&#160;&#160;&#160;mtype:&#39;POST&#39;,<br />&#160;&#160;&#160;&#160;recordtext:&#39;Total&#39;, // The Total Reocrds text comes from here<br />&#160;&#160;&#160;&#160;// pginput: true,<br />&#160;&#160;&#160;&#160;editurl: "../com/jweblists.cfc?method=addEditItem", //The Add/Edit function call<br />&#160;&#160;&#160;&#160;gridComplete: function() {<br />&#160;&#160;&#160;&#160;&#160;jQuery("#list").tableDnDUpdate();<br />&#160;&#160;&#160;&#160;},<br />&#160;&#160;&#160;&#160;//Things to do when grid is finished loading<br />&#160;&#160;&#160;&#160;loadComplete: function() {<br />&#160;&#160;&#160;&#160;&#160;// initialize List Info area<br />&#160;&#160;&#160;&#160;&#160;var recorddata = $("#list").getUserData();<br />&#160;&#160;&#160;&#160;&#160;listInfo = recorddata.LISTREC;<br />&#160;&#160;&#160;&#160;&#160;// init Web List Info View, the form is init when dialog opens<br />&#160;&#160;&#160;&#160;&#160;initListInfoView();<br />&#160;&#160;&#160;&#160;&#160;initCheckImgs();<br />&#160;&#160;&#160;&#160;&#160;initListInfoForm();<br />&#160; &#160;&#160;&#160;&#160;<br />&#160;&#160;&#160; &#160;&#160;&#160;},<br />&#160;&#160;&#160;&#160;//The JSON reader. This defines what the JSON data returned from the CFC should look like<br />&#160;&#160;&#160;&#160;jsonReader: {<br />&#160;&#160;&#160;&#160;&#160;root: "ROWS", //our data<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;page: "PAGE", //current page<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;total: "TOTAL", //total pages<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;records:"RECORDS", //total records<br />&#160;&#160;&#160;&#160;&#160; &#160;repeatitems: true,<br />&#160;&#160;&#160;&#160;&#160;userdata:"USERDATA", //Userdata we will pass back for feedback<br />&#160;&#160;&#160;&#160;&#160;cell: "", //Not Used<br />&#160;&#160;&#160;&#160;&#160;id: "0"&#160;</p>
<p>&#160;&#160;&#160;&#160;&#160;}<br />&#160;&#160;&#160;&#160;});<br />&#160;&#160;&#160;&#160;<br />&#160;&#160;&#160;&#160;$("#t_list").height(20).hide().filterGrid("#list",{gridModel:true,gridNames:false,gridToolbar:true}); <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;<br />&#160;&#160;&#160;&#160;$("#list").navGrid(&#39;#pager&#39;, {view:true, search:false}, //options <br />&#160;&#160;&#160;&#160;{savekey: [true,13], navkeys: [true,38,40], width:450, reloadAfterSubmit:true, jqModal:false, closeAfterEdit:true, closeOnEscape:true, bottominfo:"Fields marked with (*) are required"}, // edit options <br />&#160;&#160;&#160;&#160;{savekey: [true,13], navkeys: [true,38,40],&#160; width:450, reloadAfterSubmit:true,jqModal:false, closeOnEscape:true, bottominfo:"Fields marked with (*) are required"}, // add options<br />&#160;&#160;&#160;&#160;{reloadAfterSubmit:true,jqModal:false, closeOnEscape:true, <a href="&#39;../com/plantbrowser.cfc?method=delplant&#39;" target="_blank">url:&#39;../com/plantbrowser.cfc?method=delplant&#39;</a>}, // del options <br />&#160;&#160;&#160;&#160;{closeOnEscape:true}, // search options <br />&#160;&#160;&#160;&#160;{navkeys: [true,38,40], height:350, width:450, jqModal:false,closeOnEscape:true} // view options ); <br />&#160;&#160;&#160;).navButtonAdd("#pager",<br />&#160;&#160;&#160;&#160;&#160;{caption:"Search", title:"Toggle Search",<br />&#160;&#160;&#160;&#160;&#160;buttonimg:&#39;../css/smoothness/images/find.gif&#39;, <br />&#160;&#160;&#160;&#160;&#160;onClickButton:function(){ <br />&#160;&#160;&#160;&#160;&#160;&#160;if($("#t_list").css("display")=="none") <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;{ $("#t_list").css("display",""); } <br />&#160;&#160;&#160;&#160;&#160;&#160;else { $("#t_list").css("display","none"); } <br />&#160;&#160;&#160;&#160;&#160;&#160;} <br />&#160;&#160;&#160;});&#160; // end navButtonAdd</p>
]]></description>
        	        	<pubDate>Thu, 08 Oct 2009 13:27:32 +0300</pubDate>
        </item>
        <item>
        	<title>tony on custom unformat</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p10493</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p10493</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Could you please post the entry jqGrid configuration and all related functions related to this?</p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Wed, 07 Oct 2009 02:38:35 +0300</pubDate>
        </item>
        <item>
        	<title>jack_s on custom unformat</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p10485</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p10485</guid>
        	        	<description><![CDATA[<p>tony, that got rid of the error, &#160;but from what I can tell the unformat function is receiving empty/undefined parameters <em>cellvalue</em> and <em>options</em></p>
<p>the function is called and returns a value properly but it&#39;s not getting <em>cellvalue</em> and <em>options</em> parameters.</p>
<p>thanks!</p>
]]></description>
        	        	<pubDate>Tue, 06 Oct 2009 21:33:46 +0300</pubDate>
        </item>
        <item>
        	<title>jack_s on custom unformat</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p10480</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p10480</guid>
        	        	<description><![CDATA[<p>Tony, thanks for getting me back on track - that fixed it!</p>
<p>&#38; thanks for jqgrid - it&#39;s wonderful!</p>
]]></description>
        	        	<pubDate>Tue, 06 Oct 2009 13:39:35 +0300</pubDate>
        </item>
        <item>
        	<title>tony on custom unformat</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p10460</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p10460</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Load the language file grid.locale-XX.js before the jqGrid file.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Tue, 06 Oct 2009 07:50:12 +0300</pubDate>
        </item>
        <item>
        	<title>jack_s on custom unformat</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p10422</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p10422</guid>
        	        	<description><![CDATA[<p><span class="objectBox objectBox-errorMessage hasTwisty hasBreakSwitch "></span></p>
<div class="errorTitle focusRow subLogRow ">Firebug is showing this error:</div>
<div class="errorTitle focusRow subLogRow ">$.jgrid.format is not a function</div>
<div class="errorSourceBox errorSource-exec focusRow subLogRow ">[Image Can Not Be Found]<a class="errorSource a11yFocus " target="_blank"> pginp = (ts.p.pginput===true) ? "&#60;td&#62;...&#60;span id=&#39;sp_1&#39;&#62;&#60;/span&#62;")+"&#60;/td&#62;" : "",\\n</a></div></p>
]]></description>
        	        	<pubDate>Mon, 05 Oct 2009 20:30:43 +0300</pubDate>
        </item>
        <item>
        	<title>jack_s on custom unformat</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p10421</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/custom-unformat#p10421</guid>
        	        	<description><![CDATA[<p><span class="kw2">hi - I&#39;m using 3.5.3 and the custom unformat function parameters are passed empty...&#160;&#160;&#160; </span></p>
<p><span class="kw2"><span class="kw2">i.e. cellvalue is passed as an empty string and options is undefined:</span></span></p>
<p><span class="kw2"><strong>function</strong></span> myunformatfunc <span class="br0"><span style="color: #66cc66;">(</span></span> cellvalue<span class="sy0"><span style="color: #66cc66;">,</span></span> options<span class="br0"><span style="color: #66cc66;">)</span></span><br /><span class="br0"><span style="color: #66cc66;">{</span></span><br />&#160;&#160; <span class="co1"><em><span style="color: #808080;">// do something here</span></em></span><br />&#160;&#160; <span class="kw1"><span style="color: #b1b100;">return</span></span> unformated_value;<br /><span class="br0"><span style="color: #66cc66;">}</span></span></p>
<p><span class="kw2">(this was working OK a couple of releases back...)</span></p></p>
]]></description>
        	        	<pubDate>Mon, 05 Oct 2009 20:20:30 +0300</pubDate>
        </item>
</channel>
</rss>