I try to use Bootsfaces´ DateTimePicker but the popup for choosing the date and time is not working. I am using maven where i added the dependencie
<dependency>
<groupId>net.bootsfaces</groupId>
<artifactId>bootsfaces</artifactId>
<version>0.9.1</version>
<scope>compile</scope>
</dependency>
I am also using the namespaces
<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">
This is the place where i want to use the DateTimePicker
<div class="row">
<b:dateTimePicker mode="inline"/>
</div>
I´d appreciate it if anyone could help me with this.
EDIT: Screenshot of the result (mode='inline' deleted)
The problem is that the button on the right side which should open the popup is not clickable. Also by focusing the input field no popup is shown.