Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a checkboxlist as

        <s:checkboxlist list="{'Mon','Tue','Wed','Thur','fri','Sat','Sun'}" 
                             name="modProcessVO.weeklyCal" id="days"/>  

the object

  " modProcessVO.weeklyCal" 

   have data as  tue,fri,sat

My problem is that I am unable to check the checkbox of items of s:checkboxlist based on the data from the server.(that is" modProcessVO.weeklyCal")...

share|improve this question

1 Answer

Try the following option.

name="modProcessVO.weeklyCal"

and make sure that the "weeklyCal" should be string[]

share|improve this answer
no its not workiong – john May 1 '12 at 12:51
check type of weeklyCal – Dayanand May 1 '12 at 12:54
yes it is String datatype only – john May 1 '12 at 14:48
not String , It should be String array.Still you have problem, update your question little bit clear... – Dayanand May 2 '12 at 3:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.