ParamQuery grid support forum

General Category => Bug Report => Topic started by: xin on September 26, 2014, 08:03:34 pm

Title: cell values in the last column hidden partially when vertical scrollbar is draw
Post by: xin on September 26, 2014, 08:03:34 pm
When a vertical scroll bar is drawn in the grids, the cell values in the right-most column are partially hidden in the version 2.1.0.  However, in the version 2.0.4, it works all fine. Please refer to the 2 attached screenshots.  Do you have any workaround solution? 
Title: Re: cell values in the last column hidden partially when vertical scrollbar is draw
Post by: paramvir on September 26, 2014, 09:28:21 pm
In 2.1.0, refresh just after creation of the grid would fix it.

obj.create = function(evt, ui){
  $(this).pqGrid( 'refresh' );
}

where obj is pqGrid constructor object.