There really is no similar concept to a typical HTML form submit in GWT or GXT.
Best approach is to have a button (named submit if you wish) that check/collects all the values you need to send and use RPC to send data to the server.
If you must do a FORM submit, you can use the GWT FormPanel and place GXT widgets inside.
seems a lot more complex than normal form submits.
Before in gwt i just had to submit the form and the other side server side I am using glassfish to get the post data into a database and return stuff back to the program.
RPC it seems like I am suppose to have a class that they both share or something. I am getting confused on how to do RPC.
in glassfish i was just using jsp with java class wrapped and didnt use servlet
Took me a while to get gwt to go to the right path to access the servlet from the server.
Well thanks for the help.
Still I think gwt was eaiser to code but this gxt seems to have a more of a set way to code a ui which might be better. not sure. I am thinking of recoding the gwt I did using this and try to code the ui more user friendly and more powerful.
UI coding sure is a lot more harder than coding backend stuff. Now I wished I have taken more ui classes in college