validWhen - checkbox question

2006-02-06 Thread Kalcevich, Daniel
Everyone, I have two fields: 1. trackingEnabled - checkbox 2. repeatOffendersDaysBack - text (int) for number of days going back to check The rule for these fields are this: if trackingEnabled is checked, then the repeatOffendersDaysBack is required. Otherwise, repeatOffende

Re: Checkbox question

2005-06-30 Thread basudeb . acharya
/30/2005 01:01 AM Please respond to "Struts Users Mailing List" To "'Struts Users Mailing List'" cc Subject Checkbox question Hi all, I have a jsp which shows rows of data. Each row is preceded by a checkbox. i can check the boxes and hit a delete button

Re: Checkbox question

2005-06-29 Thread Phani
Hi Apte.. Here is another simple sol. which gives you an array containing the row id's of all the checkBoxes which are checked... I am using Display Tag to display the lists: <%=partItem_rowNum%> In my ActionForm I have an int[] intarray which collects t

Re: Checkbox question

2005-06-29 Thread Laurie Harper
Apte, Dhanashree (Noblestar) wrote: ... I would like to have the vaue of the field temporaryId passed back. right now, with what i have, i just get a String array called temporaryId and temporaryId[0] = "temporaryId", temporaryID[1]="temporaryId". I want the actual value of the temporaryId

Checkbox question

2005-06-29 Thread Apte, Dhanashree (Noblestar)
Hi all, I have a jsp which shows rows of data. Each row is preceded by a checkbox. i can check the boxes and hit a delete button and it is supposed to delete the selected rows. In my page i have: > I am unable to identify the rows uniquely by clicking on the checkboxe