Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a primefaces (version 3.4.2) slider and an inputText for the slider value output. The problem is that a change of the slider update the displayed value of the inputText, but the setter bind to the inputText is not called.

Here is my slider:

    <html
    xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:p="http://primefaces.org/ui"
    xmlns:a4j="http://richfaces.org/a4j">
    <h:head>
    <title>Zinsrechner</title>
    </h:head>
    <h:body>
    <h:form>
        <h:panelGrid
            columns="1"
            style="margin-bottom:10px">
            <p:inputText
                id="x"
                value="#{zinsrechner.monatlicherBeitrag}" />
            <p:slider
                minValue="0"
                maxValue="150"
                for="x" />
        </h:panelGrid>
    </h:form>
</h:body>
</html>

And this is my Setter, which is NOT called:

public void setMonatlicherBeitrag( Double beitrag ) {
    monatlicherBeitrag = beitrag;
}

The Getter IS called:

 public Double getMonatlicherBeitrag() {

        return GuiParameter.getSpareinlageProMonat();
    } 

Thanks for your ideas! Karina

share|improve this question
How is your bean annotated? – Aksel Willgert Nov 22 '12 at 11:26
With @ManagedBean( name = "zinsrechner" ) @SessionScoped – Karina Nov 22 '12 at 11:29
do you submit your form anywhere? – Fant Nov 22 '12 at 11:31
No I don't. Should I? I'm new to PrimeFaces. Until now I worked only with Richfaces. – Karina Nov 22 '12 at 11:35
If you want to set the value in your backingbean you have to submit the value to the bean, of course. you can do this via ajax or add some submit-button/link to your form. – Fant Nov 22 '12 at 11:37

1 Answer

up vote 0 down vote accepted

Adding a <p:ajax> inside your Slider will to the trick.

Example:

<p:slider minValue="0" maxValue="150" for="x">
    <p:ajax event="slideEnd" process="x" />
</p:slider>
share|improve this answer
Thanks, now it works. – Karina Nov 22 '12 at 11:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.