문제

I used jtsage jquery mobile date picker. I want to show the date picker when click the text inside popup but the date picker shown in back side of the popup i want to show the date picker infront of the popup.

My code is like.

<div data-role="content">

        <a data-rel="popup" href="#datepop">POPUP</a>
        <div id="datepop" class='ui-content' data-role='popup'>
        <label for="mydate">Some Date</label>
        <input name="mydate" id="mydate" type="date" data-role="datebox" data-options='{"mode": "datebox", "useNewStyle":true}'/>
        </div>
    </div>

Refer this fiddle http://jsfiddle.net/tZtMR/1/

도움이 되었습니까?

해결책

Working example: http://jsfiddle.net/Gajotres/zV3jU/

CSS:

.ui-datebox-container {
    z-index: 500000000 !important;
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top