Welcome to my blog, hope you enjoy reading
RSS

Thursday 16 May 2013

how to submit datebox inside form-GWT

how to submit datebox inside form-GWT

The issue is DateBox doesn't have the "name" attribute:

You can set name attribute to DateBox, since it has TextBox:

                DateBox dateBox = new DateBox();
                dateBox.getTextBox().setName(name);


0 comments: