java - Ext-GWT Advanced Form -
I am trying to use ext-GWT, but the given example only shows how to apply the form, Do not submit or process data Are there any end to ending examples of using these? I am trying to create a form in which the text and a file are uploaded, but I do not know how to do anything from the things provided in the example.
do this as:
panel.setAction (GWT .getModuleBaseURL () + "UploadSystem here"); Panel.setEncoding (FormPanel.Encoding.MULTIPART); Panel.setMethod (FormPanel.Method.POST);
And then somewhere in that form where you submit your form (click on the button) Add it:
panel.submit ();
Also make sure that you create the right HttpServlet where you can split your request into different areas.
How to submit a form for more information, you can see on the example.
Comments
Post a Comment