Hi,
I tried the following without any luck.
In my .tml:
<t:linksubmit t:event="update" class="save">Update</t:linksubmit>
In java:
public void onUpdate() {
actionType = SubmitAction.ADD;
}
Didn't work. Then I tried below:
@OnEvent(value="addField")
public void onUpdate() {
actionType = SubmitAction.ADD;
}
No luck.
Can anybody show me how to use LinkSubmit? Thanks a lot!
Henry
