Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Multiple Forms, Single Request

    Hi!
    I have two java classes: ClassA and ClassB.
    ClassA has an attribute wich is a List of type ClassB.

    I want to create a window with many tabs.
    One tab with a form for editing the basic attributes of ClassA and one tab for each instance of ClassB within the list.

    I already know how to create the tabs and forms dynamically.
    My question is:

    How can I configure the forms to act like a single form so I can call "saveData" in the first form (wich has ClassA datasource associated) and all the data in the other forms will be sent to the server as one single request.

    Is it possible?
    If not, how can I deal with this?

    PS: Sorry for my english... :p

    #2
    Yeap, use ValuesManager:

    http://www.smartclient.com/docs/7.0r....ValuesManager

    Comment

    Working...
    X