最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Timepicker appears behind the modal - Stack Overflow

programmeradmin2浏览0评论

I am using JQuery's Timepicker plug in. Here is my code:

<div class="form-group">
     <label for="time">Time of Event</label>
     <input  id="time" class="timepicker" >
     </input>
</div>

<script>

$(document).ready(function() {
    $('input.timepicker').timepicker({});
});
</script>

However, I get something like this:

As you can see, the timepicker appears behind the modal form and I am unable to access it. I think this has something to do with the z-index so I am playing around with that. However, I am unsuccessful at this time.

This is what I tried: <input id="time" class="timepicker" style="z-index:1151 !important" >

Any ideas?

EDIT: Okay, so for some reason when I try to change the z-index of the timepicker it doesn't get changed. It's like its getting overridden by something. However, if I manually change it in the Google Chrome Inspect window it works.

I am using JQuery's Timepicker plug in. Here is my code:

<div class="form-group">
     <label for="time">Time of Event</label>
     <input  id="time" class="timepicker" >
     </input>
</div>

<script>

$(document).ready(function() {
    $('input.timepicker').timepicker({});
});
</script>

However, I get something like this:

As you can see, the timepicker appears behind the modal form and I am unable to access it. I think this has something to do with the z-index so I am playing around with that. However, I am unsuccessful at this time.

This is what I tried: <input id="time" class="timepicker" style="z-index:1151 !important" >

Any ideas?

EDIT: Okay, so for some reason when I try to change the z-index of the timepicker it doesn't get changed. It's like its getting overridden by something. However, if I manually change it in the Google Chrome Inspect window it works.

Share Improve this question edited Mar 25, 2017 at 8:21 Mihai Alexandru-Ionut 48.5k14 gold badges105 silver badges132 bronze badges asked Feb 21, 2017 at 15:46 anderishanderish 1,7696 gold badges27 silver badges61 bronze badges 2
  • 1 set z-index for .ui-timepicker-container, like this : .ui-timepicker-container{ z-index:1151 !important; } – Mihai Alexandru-Ionut Commented Feb 21, 2017 at 15:51
  • 1 I tried that and it worked! Wow thanks a lot. – anderish Commented Feb 21, 2017 at 15:54
Add a ment  | 

1 Answer 1

Reset to default 11

You have to apply z-index for timepicker container.

.ui-timepicker-container{ 
     z-index:1151 !important; 
}
发布评论

评论列表(0)

  1. 暂无评论