<?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: Html td bug</title>
	<link>http://www.trirand.com/blog/?page_id=393/bugs/html-td-bug</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/html-td-bug/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on Html td bug</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/html-td-bug#p27400</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/html-td-bug#p27400</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Thanks. The fix is in GitHub.</p>
</p>
<p>Best Regards</p>
]]></description>
        	        	<pubDate>Thu, 27 Sep 2012 13:21:57 +0300</pubDate>
        </item>
        <item>
        	<title>para on Html td bug</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/html-td-bug#p27339</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/html-td-bug#p27339</guid>
        	        	<description><![CDATA[<p>Hi,</p>
<p>I managed to figure out the right file to make the changes to was grid.base.js. I tried uploading the modifications.</p>
<p>I have a github account but I get this error when I try to push the changes</p>
<p>Pushing to <a href="https://github.com/tonytomov/jqGrid.git" rel="nofollow" target="_blank">https://github.com/tonytomov/jqGrid.git</a><br />error: The requested URL returned error: 403 while accessing <a href="https://github.com/tonytomov/jqGrid.git/info/refs" rel="nofollow" target="_blank">https://github.com/tonytomov/jqGrid.git/info/refs</a><br />fatal: HTTP request failed</p>
<p>I am guessing this is because the git repository is read-only. I am using this one <a href="https://github.com/tonytomov/jqGrid.git" rel="nofollow" target="_blank">https://github.com/tonytomov/jqGrid.git</a></p>
<p>I don&#39;t see any non-read-only repositories to push the changes too.</p>
<p>Anyway here are the changes I made to jquery.jqGrid.src.js:</p>
<p>line&#160; 2870 is:&#160;</p>
<p>$("td:eq("+i+") &#62; span:first",ind).html(vl).attr(title);</p>
<p>should be:&#160;</p>
<p>$("td[role=&#39;gridcell&#39;]:eq("+i+") &#62; span:first",ind).html(vl).attr(title);</p>
<p>----------------------</p>
<p>line&#160; 2872 is:&#160;</p>
<p>$("td:eq("+i+")",ind).html(vl).attr(title);</p>
<p>should be:&#160;</p>
<p>$("td[role=&#39;gridcell&#39;]:eq(" + i + ")", ind).html(vl).attr(title);</p>
<p>----------------------</p>
<p>line&#160; 7313 is:&#160;</p>
<p>tmp = $("td:eq("+i+")",obj.rows[ind]).text();</p>
<p>should be:&#160;</p>
<p>tmp = $("td[role=&#39;gridcell&#39;]:eq("+i+")",obj.rows[ind]).text();</p>
<p>----------------------</p>
<p>line&#160; 7316 is:&#160;</p>
<p>tmp =&#160; $.unformat.call(obj, $("td:eq("+i+")",obj.rows[ind]),{rowId:rowid, colModel:this},i);</p>
<p>should be:&#160;</p>
<p>tmp =&#160; $.unformat.call(obj, $("td[role=&#39;gridcell&#39;]:eq("+i+")",obj.rows[ind]),{rowId:rowid, colModel:this},i);</p>
<p>----------------------</p>
<p>line&#160; 7318 is:&#160;</p>
<p>tmp =&#160; (this.edittype &#38;&#38; this.edittype == "textarea") ? $("td:eq("+i+")",obj.rows[ind]).text() : $("td:eq("+i+")",obj.rows[ind]).html();</p>
<p>should be:&#160;</p>
<p>tmp =&#160; (this.edittype &#38;&#38; this.edittype == "textarea") ? $("td[role=&#39;gridcell&#39;]:eq("+i+")",obj.rows[ind]).text() : $("td[role=&#39;gridcell&#39;]:eq("+i+")",obj.rows[ind]).html();</p>
<p>----------------------</p>
<p>line&#160; 8138 is:&#160;</p>
<p>tmp = $("td:eq("+i+")",obj.rows[ind]).text();</p>
<p>should be:&#160;</p>
<p>tmp = $("td[role=&#39;gridcell&#39;]:eq("+i+")",obj.rows[ind]).text();</p>
<p>----------------------</p>
<p>line&#160; 8140 is:</p>
<p>tmp = $("td:eq("+i+")",obj.rows[ind]).html();</p>
<p>should be:&#160;</p>
<p>tmp = $("td[role=&#39;gridcell&#39;]:eq("+i+")",obj.rows[ind]).html();</p></p>
]]></description>
        	        	<pubDate>Mon, 17 Sep 2012 14:21:14 +0300</pubDate>
        </item>
        <item>
        	<title>tony on Html td bug</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/html-td-bug#p27329</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/html-td-bug#p27329</guid>
        	        	<description><![CDATA[<p>Hello,</p>
</p>
<p>You shold have registration in Git Hub. See the GitHubs Documentation.</p>
<p>If you do not want to do this please use the jquery.jqGrid.src.js</p>
</p>
<p>and publish the modifcatins here like this by example</p>
<p>line&#160; 123 is:&#160;</p>
<p>a=1;</p>
<p>should be:&#160;</p>
<p>a=2;</p>
</p>
<p>Hope you got the point.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Fri, 14 Sep 2012 15:23:47 +0300</pubDate>
        </item>
        <item>
        	<title>para on Html td bug</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/html-td-bug#p27306</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/html-td-bug#p27306</guid>
        	        	<description><![CDATA[<p>Hi, I made my modifications in this file jquery.jqGrid.src.js</p>
<p>which file should I modify on github?</p>
<p>I don&#39;t see a similar file</p>
<p>Thank you.</p>
<p>Sorry for the stupid question but I am new to this.</p>
]]></description>
        	        	<pubDate>Wed, 12 Sep 2012 14:40:16 +0300</pubDate>
        </item>
        <item>
        	<title>tony on Html td bug</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/html-td-bug#p27280</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/html-td-bug#p27280</guid>
        	        	<description><![CDATA[<p>Hello,</p>
</p>
<p>You can use a GitHub<a href="https://github.com/tonytomov/jqGrid" target="_blank"> here:</a></p>
<p>Thank you.</p>
</p>
<p>Regards</p>
]]></description>
        	        	<pubDate>Mon, 10 Sep 2012 18:46:22 +0300</pubDate>
        </item>
        <item>
        	<title>para on Html td bug</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/html-td-bug#p27274</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/html-td-bug#p27274</guid>
        	        	<description><![CDATA[<p>Hi,</p>
</p>
<p>I found a bug in jqgrid and also fixed it on my local machine.</p>
<p>I want to know how I can submit my solution to the common repository</p>
<p>The problem involves editing html data in the grid(in a textarea for example) and this html data should contain &#60;td&#62; elements.</p>
<p>The problem is with this selector</p>
</p>
<p>td:eq("+i+")</p>
<p>that selects and td elements that are descendents of the tr element with the class ui-widget-content</p>
<p>To get it to select the proper elements I changed this to:</p>
<p>$("td[role=&#39;gridcell&#39;]:eq("+i+")",obj.rows[ind])</p>
</p>
<p>So. Should this be included in the official build?</p>
<p>If so how do I do that?\</p>
<p>Thank you for your time.</p>
]]></description>
        	        	<pubDate>Mon, 10 Sep 2012 11:56:36 +0300</pubDate>
        </item>
</channel>
</rss>