Skip to content

Commit

Permalink
nothing really changed
Browse files Browse the repository at this point in the history
  • Loading branch information
drseb committed Apr 12, 2018
1 parent 8e0835b commit 4f39165
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .settings/com.vaadin.integration.eclipse.prefs
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ com.vaadin.integration.eclipse.mavenLatestVersionsUpgrade=["7.6.8","7.7.3"]
com.vaadin.integration.eclipse.previousCompileAction=both
com.vaadin.integration.eclipse.useLatestNightly=false
com.vaadin.integration.eclipse.widgetsetCompilationEta=34834
com.vaadin.integration.eclipse.widgetsetDirty=false
com.vaadin.integration.eclipse.widgetsetDirty=true
eclipse.preferences.version=1
2 changes: 1 addition & 1 deletion ivysettings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</url>
</dual>
</chain>
</resolvers>
</resolvers>
<modules>
<!-- Vaadin patched SmartSprites -->
<module organisation="com.carrotsearch" name="smartsprites"
Expand Down
17 changes: 8 additions & 9 deletions src/hpoweb/uicontent/SearchBarFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,14 @@ public int size(String filter) {
}
};

final LazyComboBox<SearchableEntity> cb = new LazyComboBox<SearchableEntity>(SearchableEntity.class,
filterablePagingProvider, filterableCountProvider)
.setCaptionGenerator(new CaptionGenerator<SearchableEntity>() {

@Override
public String getCaption(SearchableEntity option) {
return option.toString();
}
});
final LazyComboBox<SearchableEntity> cb = new LazyComboBox<SearchableEntity>(SearchableEntity.class, filterablePagingProvider,
filterableCountProvider).setCaptionGenerator(new CaptionGenerator<SearchableEntity>() {

@Override
public String getCaption(SearchableEntity option) {
return option.toString();
}
});

cb.setInputPrompt("Enter search terms ...");

Expand Down

0 comments on commit 4f39165

Please sign in to comment.