Skip to content

Commit

Permalink
JBPM-6892 - Remove spacing between table results and controls (#988)
Browse files Browse the repository at this point in the history
  • Loading branch information
cristianonicolai committed Feb 27, 2018
1 parent df73849 commit a58d6b8
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -53,7 +53,10 @@ public ExtendedPagedTable(final GridGlobalPreferences gridPreferences) {
super(DEFAULT_PAGE_SIZE,
(T item) -> (item == null) ? null : item.getId(),
gridPreferences,
true);
true,
false,
false,
false);

selectedItems = new ArrayList<T>();
dataGrid.addColumnSortHandler(new AsyncHandler(dataGrid));
Expand Down

0 comments on commit a58d6b8

Please sign in to comment.