Слайдер Primefaces не появляется - PullRequest
0 голосов
/ 20 октября 2018

Я пытаюсь добавить элемент слайдера простых лиц, но он вообще не отображается / не отображается / не отображается.Например, я положил его в <h:body> (<h:head> также существует), внутри <h:form>:

<h:inputHidden id="R"/> <p:slider for="R" minValue="2" maxValue="5" step="1" id="Rslider"/>

, и в месте, где я его поместил, нет ничего в html (просто без тегов).

Консоль регистрирует это:

jquery-3.3.1.min.js:2 jQuery.Deferred exception: this.jq.slider is not a function TypeError: this.jq.slider is not a function
    at c.init (http://localhost:8080/helloworld/javax.faces.resource/components.js.xhtml?ln=primefaces&v=3_3_0_130419&v=6.0:33:471)
    at c.e.(anonymous function) [as init] (http://localhost:8080/helloworld/javax.faces.resource/core.js.xhtml?ln=primefaces&v=3_3_0_130419&v=6.0:5:335)
    at new c (http://localhost:8080/helloworld/javax.faces.resource/core.js.xhtml?ln=primefaces&v=3_3_0_130419&v=6.0:5:437)
    at Object.createWidget (http://localhost:8080/helloworld/javax.faces.resource/core.js.xhtml?ln=primefaces&v=3_3_0_130419&v=6.0:1:4706)
    at Object.cw (http://localhost:8080/helloworld/javax.faces.resource/core.js.xhtml?ln=primefaces&v=3_3_0_130419&v=6.0:1:4527)
    at HTMLDocument.<anonymous> (http://localhost:8080/helloworld/lab.xhtml:44:147)
    at l (http://localhost:8080/helloworld/jquery-3.3.1.min.js:2:29375)
    at c (http://localhost:8080/helloworld/jquery-3.3.1.min.js:2:29677)

и

Uncaught TypeError: this.jq.slider is not a function
    at c.init (components.js.xhtml?ln=primefaces&v=3_3_0_130419&v=6.0:33)
    at c.e.(anonymous function) [as init] (http://localhost:8080/helloworld/javax.faces.resource/core.js.xhtml?ln=primefaces&v=3_3_0_130419&v=6.0:5:335)
    at new c (core.js.xhtml?ln=primefaces&v=3_3_0_130419&v=6.0:5)
    at Object.createWidget (core.js.xhtml?ln=primefaces&v=3_3_0_130419&v=6.0:1)
    at Object.cw (core.js.xhtml?ln=primefaces&v=3_3_0_130419&v=6.0:1)
    at HTMLDocument.<anonymous> (lab.xhtml:44)
    at l (jquery-3.3.1.min.js:2)
    at c (jquery-3.3.1.min.js:2)

Пытался загрузить разные версии и темы, но безрезультатно.

<p:inputText>

и <p:spinner> работает нормально.

...