ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: queensgambit9 on January 16, 2018, 12:28:39 am
-
Must height on toolbar be set? Or will grid adjust itself to dynamic height of toolbar?
Having issue when height is not set on toolbar that bottom section get too high and overlaps grid.
http://jsfiddle.net/p5exg8pL/
-
Specifying height of toolbar is normally not required.
In your case attr: "multiple='multiple'", causes a difference in height of toolbar before and after initialization.
In such cases height of toolbar can be explicitly specified.
style: 'max-height:33px;height:33px;',
http://jsfiddle.net/p5exg8pL/1/
-
Thanks.
Problem is when user has lower resolution so that some toolbar items are placed on next row, the toolbar items are pushed down behind grid instead of increasing height...
Any solution to this?
-
In that case height of the component can be defined instead of the toolbar.
type: 'select',
cls: 'columnSelector',
attr: "multiple='multiple'",
style: "height:26px;max-height:26px;",
http://jsfiddle.net/p5exg8pL/2/