cancel
Showing results for 
Search instead for 
Did you mean: 

Changing system forms

pm_witmond
Participant
0 Kudos

Hi,

I want to add a command button to a system form

This is easy but whenever i close the form all my changes are gone

How can i make these changes more permanent ?

Accepted Solutions (1)

Accepted Solutions (1)

Gianluigi
Product and Topic Expert
Product and Topic Expert
0 Kudos

You mean that the next form you open does not contain the new command button ?

Trinidad
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hi,

There is no way to make your changes permanent, you have to add your button to the system form every time a new form of the type you want to modify is opened (et_FORM)LOAD event).

Regards

Trinidad.

rasmuswulff_jensen
Active Contributor
0 Kudos

On item-event...


//Get form from the formUid passed along

if(oForm.TypeEx == "WANTEDFORMTYPE" && pVal.EventType == BoEventTypes.et_FORM_LOAD) {
  //Add button
}

Answers (1)

Answers (1)

Former Member
0 Kudos

They shouldn't be gone if your add-on is still running.