AnyTime Picker pops up behind the dialog box
I'm using the AnyTime Picker (http://www.ama3.com/anytime/) within a JQuery UI Dialog box. The thing is, that the time picker always pops up behind the dialog box. Any ideas how to get i开发者_Python百科t to pop up in front of the dialog?
Regards, JAClerigo
Add this to your css file:
div.AnyTime-win {z-index:9999}
lonut is correct. The CSS Z-Index property defines the stack order of an element. Therefore an element with a z-index greater than another element will be displayed on top. Setting the value to 9999 should bring it to the front.
精彩评论