hide default button from the form

Hi,
I would like to hide the default OK and CANCEL buttons in the metastorm form ( i have 9.2.1 )

In read the manual and i saw:

31.6 showSubmit and showCancel Functions

The following client-side script functions are provided for showing and hiding the Submit and Cancel

buttons on a form:

procedure showSubmit(Visible : boolean);

procedure showCancel(Visible : boolean);

MBPM Version 9.2

MBPM Version 9.2 June 2012 Page 291

 

I used it in  "on form Load "  but it doesn't work.
Someone can help me ?

Tagged:

Comments

  • I used  in  "on form Load "  in the top on the script and now it works fine.

     

    showSubmit(false);
    showCancel(false);