Hi,
I also have the same problem, the app also breaks if you enter some custom
character, like the % sign.
java.lang.IllegalArgumentException
Input string 'totalsadf%' is not valid; the character '%' at position 10 is
not valid.
Hide uninteresting stack frames Stack trace
*
org.apache.
I think the builtin Autocomplete mixin does something like that.
ComponentEventCallback callback = new ComponentEventCallback()
{
public boolean handleResult(Object result)
{
List matches = coercer.coerce(result, List.class);
matchesHolder.put(matc
Hi,
I'm writing a component, the component requires its container to format a
string before rendering completely, say, it needs to call a method:
String makeLink(Integer pageNo)
and makeLink should be defined by the container of the component, I'm
thinking of event bubbling can take care of thi