use of org.gwtbootstrap3.client.ui.html.UnorderedList in project ovirt-engine by oVirt.
the class AbstractMainWithDetailsTableView method addResultPanel.
private void addResultPanel(ActionPanelPresenterWidget<T, M> actionPanel) {
resultRow = new Row();
resultRow.addStyleName(PatternflyConstants.PF_TOOLBAR_RESULTS);
FlowPanel resultColumn = new FlowPanel();
resultRow.add(resultColumn);
// $NON-NLS-1$
resultColumn.add(new Paragraph(constants.activeTags() + ":"));
resultList = new UnorderedList();
resultList.addStyleName(Styles.LIST_INLINE);
resultList.getElement().getStyle().setPaddingLeft(10, Unit.PX);
resultColumn.add(resultList);
resultRow.setVisible(false);
actionPanel.setFilterResultPanel(resultRow);
}
Aggregations