The CheckboxItem always display a tiny empty cell in front of it, even with setColSpan(1).
Any idea how to get rid of it?
Any idea how to get rid of it?
public void onModuleLoad() { SC.showConsole(); VLayout layout = new VLayout(); CheckboxItem checkBoxItem = new CheckboxItem("images", "a"); checkBoxItem.setColSpan(1); CheckboxItem checkBoxItem2 = new CheckboxItem("images2", "b"); checkBoxItem2.setColSpan(1); checkBoxItem2.setStartRow(false); DynamicForm formFilters = new DynamicForm(); formFilters.setNumCols(2); formFilters.setCellBorder(1); formFilters.setItems(checkBoxItem, checkBoxItem2); layout.addMember(formFilters); layout.draw(); }
Comment