Tapestry 4, get submitted value from non-component element
Posted
by cometta
on Stack Overflow
See other posts from Stack Overflow
or by cometta
Published on 2010-03-31T04:48:39Z
Indexed on
2010/04/08
23:43 UTC
Read the original article
Hit count: 287
My form has a custom element like below, created using custom ajax:
<select jwcid="testtest <at> Any">
<option value="x">California -- CA</option>
<option value="y">Colorado -- CO</option>
<option value="z">Connecticut -- CN</option>
</select>
After the form is submitted, how do I get the value of this custom html element?
cycle.getPage().getComponents().get("testtest")
?
© Stack Overflow or respective owner