cancel
Showing results for 
Search instead for 
Did you mean: 

How to enable a disabled system menu such as first record menu item id 1290

Former Member
0 Kudos

Dear all i have to enable a system menu for my form

Is it possible to enable

and if yes then how it is possible

Thanks in advance

ATUL

Accepted Solutions (1)

Accepted Solutions (1)

AdKerremans
Active Contributor
0 Kudos

Hi,

In xml you add something similar like below:

<Menus>

<action type="enable">

<Menu uid="1290"/>

<Menu uid="1288"/>

<Menu uid="1289"/>

<Menu uid="1291"/>

<Menu uid="1293"/>

</action>

<action type="disable">

<Menu uid="5890"/>

</action>

</Menus>

In code you use:

form.EnableMenu(...)

regards

Ad

Answers (1)

Answers (1)

Former Member
0 Kudos

Thanks AD

i was searching for this whole day

additionally where can i get documentation related to all this .

AdKerremans
Active Contributor
0 Kudos

Hi Atul,

You can find most of the SDK information in the SDK helpcenter.

Regards

Ad