我有一个表格:
private Class TestForm extends Form<TestString>{
public TestForm(TestString testString){
super("testForm", new CompoundPropertyModel<TestString>(testString));
final TextField<String> test = new TextField<String>("test"));
add(test);
... //submit button
}
该类TestString
仅包含一个字段:test
.
除了按下提交按钮之外,是否可以获取字符串的值?是行为还是其他?
我试图AjaxEventBehavior
在这种行为内部添加和调用方法text.getValue()
,testString.getTest()
但没有成功。