ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: maabalaji on January 31, 2015, 04:21:13 am

Title: Date Picket is over lapped with Grid
Post by: maabalaji on January 31, 2015, 04:21:13 am
Please see attached, date picker is not showed correct - scroll bars are overlapped
my be z-index issue ?
Title: Re: Date Picket is over lapped with Grid
Post by: paramvir on January 31, 2015, 08:07:28 pm
I assume the calendar in picture has z-index of at least 1.

It can be fixed by setting z-index of selector ".pq-grid" to 0 in css.

Code: [Select]
.pq-grid{
  z-index: 0;
}
Title: Re: Date Picket is over lapped with Grid
Post by: maabalaji on January 31, 2015, 10:22:53 pm
You rock.