{
this.resources = resources;
this.resources.navigation().ensureInjected();
this.activityOracle = new ActivitySuggestOracle();
Html5TextBox activityTextBox = new Html5TextBox();
activityTextBox.setPlaceholder("Select or enter a new activity");
this.activity = new SuggestBox(activityOracle, activityTextBox);
NamedModelSuggestOracle<Project> projectOracle = new NamedModelSuggestOracle<Project>(projectsCache);
Html5TextBox projectTextBox = new Html5TextBox();
projectTextBox.setPlaceholder("Select or enter a new project");
this.project = new SuggestBox(projectOracle, projectTextBox);
this.widget = binder.createAndBindUi(this);
this.today.addStyleName(style.selectedDate());
this.yesterday.setText(DATE_FORMAT.format(new Date(System.currentTimeMillis() - ONE_DAY)));