ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: msdnweixiao on November 06, 2020, 08:55:09 am
-
i have a png pic, now i want to set it as background picture for grid, how i do?
thank you
-
2 steps:
Set the background of all children of grid body to transparent.
Then set the background of grid body.
.pq-body-outer *{
background: transparent !important
}
.pq-body-outer{
background-image: url("...........");
}
-
yes, it workd.
but the stripeRows does not worked, why?
-
because rows are children of grid body and we set their background to transparent.