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've a struts checkboxlist as

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

But I'm not getting the id 'days' as I specified. id is showing like processVO.weeklyCal-1 upto processVO.weeklyCal-7 while I checked in page source. So I'm not able to write the jQuery function to enable/disable the checkboxlist using the id 'days'. How can I solve this? Pls help

share|improve this question
What version of struts is this? – primavera133 May 7 '12 at 6:04
Struts2 version – Deepu May 7 '12 at 6:13
Id's must be unique. Struts probably handles this by enumerating your names (1 - 7). Use the attribute-starts-with selector mentioned above instead of your id selector. – primavera133 May 7 '12 at 6:55
I tried with that selector..But I didn't get a clear picture how to use that exactly. So it didn't work for me – Deepu May 7 '12 at 8:13

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.