Re: Checkbox question

2005-06-30 Thread basudeb . acharya
Hi Apte, The problem is due to the fact that when an array of checkboxes are submitted only the checkboxes which are checked are sent back to the server and that does not contain the index of the checkbox as laid out in the form, for example if there are 10 checkboxes (with same name) in a f

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