i’m using gxt CheckBoxListView
CheckBoxListView<BaseModel> checkList = new CheckBoxListView<BaseModel>();
checkList.setStore(store);
i want to setChecked(true) for all the models in the store
is there a easy way to do that
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
For all the models present in your store (assuming that you have done store.addAll(List yourList);…), set the checked property to “true”