我尝试使用 Bootsfaces 的 DateTimePicker,但选择日期和时间的弹出窗口不起作用。我正在使用添加依赖项的 maven
<dependency>
<groupId>net.bootsfaces</groupId>
<artifactId>bootsfaces</artifactId>
<version>0.9.1</version>
<scope>compile</scope>
</dependency>
我也在使用命名空间
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:p="http://primefaces.org/ui"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:c="http://java.sun.com/jsp/jstl/core"
xmlns:b="http://bootsfaces.net/ui">
这是我想使用 DateTimePicker 的地方
<div class="row">
<b:dateTimePicker mode="inline"/>
</div>
如果有人可以帮助我,我将不胜感激。
编辑: 结果截图(mode='inline' 已删除)
问题是右侧应该打开弹出窗口的按钮不可点击。同样,通过聚焦输入字段,不会显示弹出窗口。