Hello

     I am using gwt ext . In html file I have two div tags.
<div id="one" name="fromdate"> <div id="two" name="todate">
by using gwt ext I am setting datefield object on these two tags and after
clicking on submit button how to get values on server. its not getting
like.. request.getParameter("one") and request.getParameter("two").

here is my gwtext code

public class DateFieldProject implements EntryPoint {
        public void onModuleLoad() {

            DateField from = new DateField("From Date","frmdt",100);
            DateField to = new DateField("To Date","todt",100);

            RootPanel.get("fromDate").add(from);
            RootPanel.get("toDate").add(to);

        }
}

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to