ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: lsl on April 29, 2017, 03:05:07 pm

Title: Row height Align with Grid height
Post by: lsl on April 29, 2017, 03:05:07 pm
There is a grid with one record only with memo fields. The memo rows are many and always not able to display the complete information.
However, the grid height will be varies according to the screen size.
It there a method to set the row height align with the grid height so that we can get more rows in the memo as possible?
Title: Re: Row height Align with Grid height
Post by: paramvir on May 01, 2017, 09:09:46 am
One quick option is to set wrap to false.

Other way is to wrap cell content in a div of specified max-height ( div height can also be made dependent upon grid height).

column.render = function(ui){
  var ht = this.widget().height();
  return "<div style='max-height:"+ ht/2 +"px;'>"+ui.cellData+"</div>";
}