use of com.googlecode.wicket.jquery.ui.widget.dialog.DialogButton in project openmeetings by apache.
the class VoteDialog method onInitialize.
@Override
protected void onInitialize() {
getTitle().setObject(getString("18"));
add(form = new PollAnswerForm("form", new CompoundPropertyModel<>(new RoomPollAnswer())));
vote = new DialogButton("vote", getString("32"));
cancel = new DialogButton("cancel", getString("lbl.cancel"));
super.onInitialize();
}
Aggregations