<?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: Column resize mark position</title>
	<link>http://www.trirand.com/blog/?page_id=393/bugs/column-resize-mark-position</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/column-resize-mark-position/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>dluis on Column resize mark position</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/column-resize-mark-position#p29981</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/column-resize-mark-position#p29981</guid>
        	        	<description><![CDATA[<p>I&#39;m using Bootstrap 3 and I needed this to correct that same issue. The main problem until now with Bootstrap 3 is the "box-sizing:&#160;border-box;" that breaks some parts.</p>
]]></description>
        	        	<pubDate>Mon, 16 Dec 2013 21:34:47 +0200</pubDate>
        </item>
        <item>
        	<title>mistic100 on Column resize mark position</title>
        	<link>http://www.trirand.com/blog/?page_id=393/bugs/column-resize-mark-position#p29314</link>
        	<category>Bugs</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/bugs/column-resize-mark-position#p29314</guid>
        	        	<description><![CDATA[<p>Hello</p>
</p>
<p>A previous bug was reported about bad positioning of the resize mark when horizontal scrolling is used. This is not my problem as it&#39;s resolved now <img class="wp-smiley" src="/blog/wp-includes/images/smilies/icon_smile.gif" alt=":-)" /></p>
</p>
<p>Here is my situation : my page contains a JQuery UI Layout, and the center block contains the jQgrid.</p>
<p>A consequence is the resize mark having a left offset from the cursor corresponding to the size of the left pane of the layout.</p>
<p>I think exactly the same issue occurs if the grid is in an absolute positioned container, or some custom layout.</p>
</p>
<p>I corrected this by modifying grid.base.js :</p>
</p>
<pre>@@ -860,10 +860,10 @@ $.fn.jqGrid = function( pin ) {
    cols:[],
    footers: [],
    dragStart: function(i,x,y) {
-       this.resizing = { idx: i, startX: x.clientX, sOL : x.clientX-6};
+       this.resizing = { idx: i, startX: x.clientX, sOL : x.clientX-1-$(this.bDiv).offset().left};
        this.hDiv.style.cursor = "col-resize";
        this.curGbox = $("#rs_m"+$.jgrid.jqID(p.id),"#gbox_"+$.jgrid.jqID(p.id));
-       this.curGbox.css({display:"block",left:x.clientX-6,top:y[1],height:y[2]});
+       this.curGbox.css({display:"block",left:this.resizing.sOL,top:y[1],height:y[2]});
        $(ts).triggerHandler("jqGridResizeStart", [x, i]);
        if($.isFunction(p.resizeStart)) { p.resizeStart.call(ts,x,i); }
        document.onselectstart=function(){return false;};</pre>
]]></description>
        	        	<pubDate>Wed, 14 Aug 2013 16:12:58 +0300</pubDate>
        </item>
</channel>
</rss>