Datepicker出现在换行div后面。

时间:2015-12-08 09:27:38

标签: jquery html twitter-bootstrap apex

我的网站上有一个表单供客户指定他们想要的产品。表单的工作是收集该数据。表单字段中的一个用于指定项目的截止日期。使用datepicker我想根据客户在日历上选择的内容填充该字段。它确实如此。问题是,当日历出现时,它会弹出一个wrapsemibox,我希望它在它前面。在输入字段的正下方。这是代码。

 <script>
  $(function() {
    $( "#datepicker" ).datepicker();
  });
  </script>


<apex:inputField value="{!Service_Order__c.Project_Deadline__c}" 
html-placeholder="Please allow 8 weeks" 
id="datepicker" required="true" styleClass="form-control" />

这两个代码产生这样的输出:

Form
When you zoom out

1 个答案:

答案 0 :(得分:0)

<apex:inputField style='z-index:999;position:relative;'