How use form models to create a form without a base bean.
I want make a dialog to ask for paramaters to do an process, no to edit a bean.
How use form models to create a form without a base bean.
I want make a dialog to ask for paramaters to do an process, no to edit a bean.
If your process is a command object, why not just bind to it directly? So the fields on the dialog's form can be attached to properties of the command object. Then on dialog finish, invoke command.execute() (or whatever.)
What other structure would you want to bind the dialog fields to?
OK.
I recibe a array of property editors to show.
I will use it as an indexed property
THANKS!!