I want to set a watermark/placeholder inside of a GWT DateBox. I know how to use onFocus and onBlur to set up a watermark/placeholder in a normal TextBox. I assumed that doing so in a DateBox would be relatively similar. Setting up the text currently looks like this, but does nothing at all.
Datebox box = new DateBox();
box.getTextBox().setText("mm/dd/yyyy");
Is there a reason that this would not be working?