<?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: resize bar exit the grid</title>
	<link>http://www.trirand.com/blog/?page_id=393/bugs/resize-bar-exit-the-grid</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/resize-bar-exit-the-grid/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>belha on resize bar exit the grid</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/resize-bar-exit-the-grid#p29577</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/resize-bar-exit-the-grid#p29577</guid>
        	        	<description><![CDATA[<p>Hey Tony,</p>
<p>The update file does not work. Indeed, following the update I had other errors.</p>
<p>In fact, I can not increase the version for a project cycle. I can only make minor changes.</p>
<p>and in this case I think I should modify and update other files without necessarily know the impact.</p>
<p>That&#39;s why, I chose to leave my patch in place and&#160; in the next version, I will proceed to update the entire file.</p>
<p>Thank you.</p>
<p>Regards.</p>
<p>Belha <img class="spSmiley" style="margin:0" title="Laugh" src="/blog/wp-content/forum-smileys/sf-laugh.gif" alt="Laugh" /></p>
]]></description>
        	        	<pubDate>Mon, 30 Sep 2013 17:55:10 +0300</pubDate>
        </item>
        <item>
        	<title>tony on resize bar exit the grid</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/resize-bar-exit-the-grid#p29520</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/resize-bar-exit-the-grid#p29520</guid>
        	        	<description><![CDATA[<p>Hello,</p>
</p>
<p>Please let me know if the fix work for you.</p>
</p>
<p>Kind Regrds</p>
]]></description>
        	        	<pubDate>Mon, 23 Sep 2013 14:09:27 +0300</pubDate>
        </item>
        <item>
        	<title>belha on resize bar exit the grid</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/resize-bar-exit-the-grid#p29513</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/resize-bar-exit-the-grid#p29513</guid>
        	        	<description><![CDATA[<p>Hi Tony,</p>
</p>
<p>thank you for your answer. In fact, I have not seen this post.</p>
<p>But I tried to fix it in my js and it does not work. I&#39;ll try again. I&#39;ll try to replace the entire file can be.</p>
</p>
<p>Regards</p>
</p>
<p>Belha</p>
]]></description>
        	        	<pubDate>Fri, 20 Sep 2013 17:42:03 +0300</pubDate>
        </item>
        <item>
        	<title>tony on resize bar exit the grid</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/resize-bar-exit-the-grid#p29490</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/resize-bar-exit-the-grid#p29490</guid>
        	        	<description><![CDATA[<p>Hello,</p>
</p>
<p>Thank you for the investigation.</p>
<p>The prblem is fixed other way <a href="https://github.com/tonytomov/jqGrid/commit/b7787034a37a1852fb20845e6bf5a4694a20df5d" target="_blank">here</a></p>
</p>
<p>Kind Regards</p>
]]></description>
        	        	<pubDate>Wed, 18 Sep 2013 11:48:27 +0300</pubDate>
        </item>
        <item>
        	<title>belha on resize bar exit the grid</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/resize-bar-exit-the-grid#p29485</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/resize-bar-exit-the-grid#p29485</guid>
        	        	<description><![CDATA[<p>hi,</p>
<p>I fixed in my local version a bug which is this one:</p>
<p>I use the version 4.5.2</p>
<p>- setting the column of a table such that it is larger than the size of the grid</p>
<p>- positioning the horizontal scroll as the last columns of the table are shown at the same time a piece of the column initially resized is accessible to the resizing</p>
<p>- click the header of the table to start resizing</p>
<p>- decreasing the size of the column. Normally the selection bar should exit the grid</p>
<p>I commented this line in the source file and the problem disappeared. I have not seen specific regression but I suspect it was put in place for a reason.</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit4582' value='Select Code' data-codeid='sfcode4582' /></p>
<div class='sfcode' id='sfcode4582'>
<p>getOffset = function (iCol) {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;var $th = $(ts.grid.headers[iCol].el), ret = [$th.position().left + $th.outerWidth()];<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if(ts.p.direction==="rtl") { ret[0] = ts.p.width - ret[0]; }<br />&#160;&#160; &#160;&#160;&#160; <span style="color: #ff0000;"><strong>&#160;&#160;&#160; &#160;//&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;ret[0] -= ts.grid.bDiv.scrollLeft;</strong></span><br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;ret.push($(ts.grid.hDiv).position().top);<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;ret.push($(ts.grid.bDiv).offset().top - $(ts.grid.hDiv).offset().top + $(ts.grid.bDiv).height());<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;return ret;<br />&#160;},</p>
</div>
<p>Thank you</p>
<p>Belha <img class="spSmiley" style="margin:0" title="Wink" src="/blog/wp-content/forum-smileys/sf-wink.gif" alt="Wink" /></p></p>
]]></description>
        	        	<pubDate>Tue, 17 Sep 2013 19:07:31 +0300</pubDate>
        </item>
</channel>
</rss>