Announcement

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

    Form split into tabs

    Hello,

    I am trying to split a form into tabs like in this example:
    http://www.smartclient.com/smartgwt/showcase/#layout_form_splitting

    But I see for each Tab there is a DynamicForm... is it possible to do that using only one form?!

    In my situation I am displaying a record with a lot of fields, that's why I am separating it into tabs... is there a way to split the form into tabs without creating a form for each tab?
    Each form would then have the criteria (recordID), etc.

    Thanks!

    I am using SmartGWT 2.4 EE.

    Thank you for your help

    #2
    Hi,

    I don't think so.
    You need to use a ValueManager for that.

    Why do you need it anyway?

    Cheers

    Comment


      #3
      Why should that not be possible?

      Well I have for example a table "customers". In the form I want to display all the customer information FOR ONE CUSTOMER. The form is also editable.
      For getting one customer i have a Criteria: id==1234

      So for example in the first tab, I want to present the "personal information", in the second one "bank information", etc.
      To simplify lets asume I have a table customers:

      customers
      id name first_name birthday bank bank_account

      I want to present the name, first_name, birthday in the first tab, and the bank, bank_account in the second tab. (there are more fields, but that is for simplification).

      How can I do that?

      Comment


        #4
        The keyword was "ValuesManager", thanks a lot!
        The issue was solved

        Comment

        Working...
        X