Author Topic: cell values in the last column hidden partially when vertical scrollbar is draw  (Read 3490 times)

xin

  • Pro Enterprise
  • Newbie
  • *
  • Posts: 14
    • View Profile
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? 

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6265
    • View Profile
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.