I am finding an issue in getting the checkboxes count that are checked by default using,
item.add(new CheckBox("selected",new PropertyModel(this, "checked")).setEnabled(false));
Any help is appreciated.
My Listview class:
ExampleListView(String id, List<Extended> lists, PageParameters params){
protected void populateItem(ListItem<Extended> item)
{
item.add(new CheckBox("selected",new PropertyModel(this, "checked")).setEnabled(false));
}
boolean checked= true;
public boolean isChecked() { return checked; }
public void setChecked(boolean checked) { this.checked = checked; }
}
This I need to have the checkbox selected and disabled (kind of read only selected checkbox). In other scenario I also need to have item.add(new CheckBox("selected", new PropertyModel(this, "checked")));
As shown in above code, I introduced, Checked boolean, this displays a selected checkbox in UI, but the selected count list did not get incremented
In My Form class constructor:
public class ExampleForm{
public ExampleForm(String id, List<Extended> list, PageParameters params){
add(new ExampleListView("Rows", list,params));
AjaxButton<Void> button= new AjaxButton<Void>("Button"){
@Override
public void onClick(AjaxRequestTarget target) {
for (Extended extn : list) {
if (((Extended)extn).isSelected()) {
selected.add(extn);
}
}
};
}
add(button);
}
}
my Html file :
<input class="simpleLink" wicket:id="selected" type="checkbox"/>
Class file:
public class Extended implements Serializable {
private transient boolean selected = false;
public boolean isSelected() {
return selected;
}
public void setSelected (Boolean selected) {
this. selected = selected;
}
}