我是 GWT 的 Sencha GXT 框架的新手,如何从生成TextFields
的 GXT 中获取值以便将其发送到服务器?
import com.extjs.gxt.ui.client.widget.layout.FlowLayout;
import com.extjs.gxt.ui.client.widget.layout.FormData;
import com.extjs.gxt.ui.client.widget.layout.FormLayout;
public class Form extends LayoutContainer{
TextField<String> lastName = new TextField<String>();
lastName.setFieldLabel("Last Name");
fieldSet.add(lastName, formData); }
在客户端,我如何从中获取输入的值lastName
TextField
?