Results 1 to 3 of 3

Thread: Unable to commit MasterForm content

  1. #1
    Join Date
    Jan 2012
    Posts
    2

    Default Unable to commit MasterForm content

    Hi

    I have created a master form and details form. I am not able to commit values in my master form, But what i have in detailed form is committed properly and the table inside is updated very well.

    Can some1 help me to figure out what s the problem. Thank you

  2. #2
    Join Date
    Oct 2012
    Location
    Ойкумена
    Posts
    1

    Default Unable to commit MasterForm content

    i am getting the same problem. I have uninstalled everything twice does anyone have any advice on what to do.
    K.

  3. #3
    Join Date
    Jan 2012
    Posts
    2

    Default

    Quote Originally Posted by klimistwood View Post
    i am getting the same problem. I have uninstalled everything twice does anyone have any advice on what to do.
    in view class i had only the master class form. So I solved it by adding an empty form.

    It was like this:

    @Override
    protected Form[] createForms() {
    return new Form[] { new xxxxMasterForm(getFormModel()),};
    }


    Now it s like this:

    @Override
    protected Form[] createForms() {
    return new Form[] { new xxxxMasterForm(getFormModel()),new emptyForm(getFormModel);};
    }


    I don't know if it s the same case as yours.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •