Author Topic: Date Picket is over lapped with Grid  (Read 2234 times)

maabalaji

  • Pro Ultimate
  • Newbie
  • *
  • Posts: 7
    • View Profile
Date Picket is over lapped with Grid
« 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 ?

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6263
    • View Profile
Re: Date Picket is over lapped with Grid
« Reply #1 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;
}
« Last Edit: January 31, 2015, 08:12:11 pm by paramquery »

maabalaji

  • Pro Ultimate
  • Newbie
  • *
  • Posts: 7
    • View Profile
Re: Date Picket is over lapped with Grid
« Reply #2 on: January 31, 2015, 10:22:53 pm »
You rock.