PDA

View Full Version : form models


besbello
Aug 18th, 2004, 11:52 AM
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.

Keith Donald
Aug 18th, 2004, 12:01 PM
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?

besbello
Aug 18th, 2004, 05:19 PM
OK.

I recibe a array of property editors to show.
I will use it as an indexed property

THANKS!!