ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: stancao on March 02, 2022, 11:06:21 pm
-
Hi ParamQuery team,
We have the data grid with many columns. When the user zoomed (enlarged) the page, toggle icon is out of the range. The scroll bar is needed, in order to display the icon. Is it possible to position toggle to the top-left of the grid, instead of default top-right, so we can always see it?
(http://)
Thank you!
Stan Cao
-
Please use this css to make it appear left:
.pq-slider-icon{
left:0;
}
-
Hi paramvir,
Thank you! But now the icon overlapped with the title text. Is it possible to position the title text the right of the icon?
Stan
-
Title text can be shifted with css.
.pq-grid-title{
margin-left: 50px;
}
-
It works great and just I wanted, thank you!