Re: How to pass a javascript array to formbean array ?

2007-05-16 Thread Aviskaos
Thank you for your help. It works fine for me! Thomas Ramapuram escribió: We do this quite often. We have a method which goes through the array and inserts the elements as new dom input objects of type hidden and name the name of the element in the form bean with an array index. eg. do this

How to pass a javascript array to formbean array ?

2007-05-15 Thread Aviskaos
Hi! In my formbean i have this property: private String[] values; public String[] getValues() { return values; } public void setValues(String[] values) { this.values = values; } Late, in my jsp, i have a global javascript v

Re: How to pass a javascript array to formbean array ?

2007-05-15 Thread Aviskaos
Sorry the var name in the jsp is var myArray = new Array() Aviskaos escribió: Hi! In my formbean i have this property: private String[] values; public String[] getValues() { return values; } public void setValues(String[] values) { this.values