The inputNumberSlider
of Richfaces fails in my case to immediately update the backing bean. The setter method is never invoked. I'm right in saying, that backing bean field should should be updated on change?
<rich:inputNumberSlider
id="severityLevel"
value="#{pubController.severityLevel}"
minValue="1"
maxValue="3"
maxlength="1" />
I did set a breakpoint in the setter method, but it never rises. I must say, it works properly for all the h:inputText
tags.