ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: msdnweixiao on November 06, 2020, 08:55:09 am

Title: How to set background picture for grid
Post 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
Title: Re: How to set background picture for grid
Post by: paramvir on November 06, 2020, 09:23:42 am
2 steps:

Set the background of all children of grid body to transparent.

Then set the background of grid body.

Code: [Select]
.pq-body-outer *{
background: transparent !important
}
.pq-body-outer{
background-image: url("...........");
}
Title: Re: How to set background picture for grid
Post by: msdnweixiao on November 06, 2020, 10:59:43 am
yes, it workd.

but the stripeRows does not worked, why?
Title: Re: How to set background picture for grid
Post by: paramvir on November 06, 2020, 11:43:44 am
because rows are children of grid body and we set their background to transparent.