Parents
  • You need to be more specific, is it a form gadget, ie a text gadget. if so you need to set its value to TRUE in the .init() method;

    after you have defined the form you need an initialization method to set required values;

    define method .init()
     !this.text.val = |default|
    endmethod

    if it just a simple variable you can create a member in the form definition;

    member .formmember is boolean

    then in the initialisation method

    !this.formmember = TRUE

    hope this helps.

    Bobthebasset
Reply
  • You need to be more specific, is it a form gadget, ie a text gadget. if so you need to set its value to TRUE in the .init() method;

    after you have defined the form you need an initialization method to set required values;

    define method .init()
     !this.text.val = |default|
    endmethod

    if it just a simple variable you can create a member in the form definition;

    member .formmember is boolean

    then in the initialisation method

    !this.formmember = TRUE

    hope this helps.

    Bobthebasset
Children
No Data