, getDashboardContext().getWidgetRegistry().getWidgetDescriptors()) {
private static final long serialVersionUID = 1L;
@Override
protected void populateItem(ListItem<WidgetDescriptor> item) {
final WidgetDescriptor wd = item.getModelObject();
item.add(new Label("name", wd.getName()));
item.add(new Label("description", wd.getDescription()));
item.add(new AjaxCheckBox("display", Model.of(isDisplayed(wd) != null)) {
private static final long serialVersionUID = -7079665921153653164L;
@Override
protected void onUpdate(AjaxRequestTarget target) {