Twitter bootstrap模式中的Timepicker没有收到点击

时间:2012-10-08 13:42:43

标签: twitter-bootstrap jquery timepicker

我正在尝试使用jquery-timepicker和bootstrap。它工作正常,除非timepicker输入在bootstrap模式中。

时间列表没有获得点击事件,虽然视觉上一切看起来都很好(它的z-index比模态和叠加更高。滚动和悬停样式工作正常)。

该问题已转载于http://jsfiddle.net/Qkgxu/1/

2 个答案:

答案 0 :(得分:0)

这是一个带有时间戳的bug,它是fixed now

答案 1 :(得分:0)

这是timepicker和modals的问题。

我找到的解决方案是:

查找showWidget函数,在此函数中必须替换

this.$element.trigger('show');

用这个

if (this.template === 'modal) {
   this.$element.trigger('show');
}