i want to fill a html:select field with a DynaActionFormBean.
the solution i know is to create an ActionForm as usual, containing an array elemtnt. but how do i create such an array element in a dynaactionform? thats what i am not understanding. is there no possibility to create an array entry in a dynaactionform?
in the actionForm it looks like this:
private user[] user = new user[0] + getter & setter
in the dynaactionform i only have the possibility to define objects like jav.lang.String or something like this (also com.myproject.user but is this an array????)
i hope its a bit clear waht i mean 😉