protected boolean validarLista2() { boolean noVacio = true; for (int i = 0; i < ltbAccionesInspector.getItemCount(); i++) { Listitem listItem = ltbAccionesInspector.getItemAtIndex(i); if (listItem.isSelected()) { Datebox date = (Datebox) listItem.getChildren().get(5).getChildren().get(0); Date fecha = date.getValue(); if (fecha == null) noVacio = false; } } return noVacio; }
public void verificarSeleccion() { List<Listitem> listado_items = listboxProcedimientos.getItems(); if (!listado_items.isEmpty()) { boolean todos = true; for (Listitem listitem : listado_items) { if (!listitem.isSelected()) { todos = false; break; } } checkboxSeleccionar_todos.setChecked(todos); } else { checkboxSeleccionar_todos.setChecked(false); } }