Click here to Skip to main content
15,884,010 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I've a checkbox like
<s:checkbox name="modProcessVO.byWeeklyCal" id="week">Days of the Week</s:checkbox>
and another checkboxlist
<s:checkboxlist list="{'Mon','Tue','Wed','Thur','Fri','Sat','Sun'}" name="modProcessVO.weeklyCal" id="days" />
. When I check the checkbox it's value will store as 'true' otherwise 'false' in database. If it is 'true' then only I'm saving the checked list of data from the checkboxlist. So when I want to modify the data I need to re-populate it back from DB to checkboxlist as checks . I tried by taking the days from db in action class in a list of string called 'wordList' and written in jsp like
<s:checkboxlist list="{'Mon','Tue','Wed','Thur','Fri','Sat','Sun'}" name="modProcessVO.weeklyCal" value="%{wordList}" id="days" />
. But say if 5 values are in that list only 1st one is repopulating to checkboxlist (for eg: wordList contains 'Sun', 'Mon' & 'Tue', only 'Sun' showing as checked). Pls help. Thanks
Posted
Updated 3-May-12 20:46pm
v2

1 solution

I solved that problem. I'll give my code here :)

public class ScheduleAction extends ActionSupport {

private String checkListData;

private List<string> wordList;

public String modifySchedule() {
checkListData = modProcessVO.getCalWeek(); // retrieving checked items from database
    String regex=",";
    String[] test=checkListData.split(regex);
    wordList = new ArrayList<string>();
for(String str : test)
    {
        wordList.add(str.trim());
    }
return SUCCESS;
}
//getters and setters of variables

}
</string></string>


In jsp I'm giving like

<s:checkboxlist list="{'Mon','Tue','Wed','Thur','Fri','Sat','Sun'}" name="modProcessVO.weeklyCal" id="days" value="wordList" xmlns:s="#unknown" />
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900