Hi!
> The updated values of the Map strings in the params object are correct
> when displayed with a outputText component. But when used with an
> inputText component the value isn't updated.
You'll find a valueChangeNotifier in tomahawk sandbox which will fix
your problem.
A jsp example:
<h:selectOneMenu value="#{notifierBean.selectedCategory}"
onchange="submit()">
<s:valueChangeNotifier method="#{notifierBean.valueChange}" />
<f:selectItems value="#{notifierBean.categories}" />
</h:selectOneMenu>
In contrast to the valueChangeListener the valueChangeNotifier will be
called later so that you can change your model values.
Ciao,
Mario