Skip to content
Snippets Groups Projects
Commit 346e690f authored by tpylak's avatar tpylak
Browse files

minor: add "show in choosers" column to vocabulary grid

SVN: 12990
parent dcb7c05b
No related branches found
No related tags found
No related merge requests found
......@@ -81,6 +81,16 @@ public enum VocabularyColDefKind implements IColumnDefinitionKind<Vocabulary>
{
return entity.getURLTemplate();
}
}),
SHOW_IN_CHOOSERS(new AbstractColumnDefinitionKind<Vocabulary>(
Dict.VOCABULARY_SHOW_AVAILABLE_TERMS_IN_CHOOSERS, true)
{
@Override
public String tryGetValue(Vocabulary entity)
{
return SimpleYesNoRenderer.render(entity.isChosenFromList());
}
});
private final AbstractColumnDefinitionKind<Vocabulary> columnDefinitionKind;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment