Skip to content

Commit

Permalink
style for title and box added such that it can be overwritten
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelwechner committed Oct 21, 2013
1 parent ff6326d commit 523a404
Showing 1 changed file with 6 additions and 1 deletion.
Expand Up @@ -54,10 +54,15 @@ public IdentitiesListBoxWidget(int visibleItemCount, String language) {
this.language = language;
initWidget(vp);

vp.add(new Label(I18n.getLabel("list-box-identities", language) + ":"));
//vp.add(new Label(I18n.getLabel("list-box-identities", language) + ":"));
VerticalPanel titlePanel = new VerticalPanel();
titlePanel.setStyleName("gwt-wyona-identity-list-box-title");
titlePanel.add(new Label(I18n.getLabel("list-box-identities", language) + ":"));
vp.add(titlePanel);

boolean isMultipleSelect = true;
lb = new ListBox(isMultipleSelect); // NOTE: ListBox#setMultipleSelect(true) can spuriously fail on IE 6.0
lb.setStyleName("gwt-wyona-identity-list-box");
lb.addClickListener(this);

lb.clear();
Expand Down

0 comments on commit 523a404

Please sign in to comment.