Hide OOB submit button in custom application

yandp
Tera Guru
Spoiler
Hi all, i need help.
i have a custom application. need to remove the OOB submit button.

i have a customised ui action,  now showing two submit botton.

i tried many way from forum here, i tried below,

- use same ui action name in customised ui action
- sysverb_insert

- try overrite, too many ui action named as " submit, which one i can override?

please help me, urgently to do a demo to user,

Thank you very much in advance.












1 ACCEPTED SOLUTION

Rajesh Chopade1
Mega Sage

Hi @yandp 

 

Procedure:

1. Go to the global UI Action in the sys_ui_action table.

2. Change the table from Global to the table name that you want the UI Action to be hidden.

3. In the condition field, add a script that will never be true (For example ! current.canCreate() )

4. Right-click on the header and click ‘Insert and Stay’.

This will create another UI Action with all the same properties as the global one but overrides the global UI Action and hides it as well.

Make sure, the new UI action has the exact same action name and properties as the other. (Hence I advise the ‘Insert and Stay’ so that you do not have to change anything else other than the condition and the table.

 

You can follow below article:

How to hide a global UI Action/ button in Scoped applications

 

Thanks 

Rajesh Chopade

 

View solution in original post

4 REPLIES 4

Rajesh Chopade1
Mega Sage

Hi @yandp 

 

Procedure:

1. Go to the global UI Action in the sys_ui_action table.

2. Change the table from Global to the table name that you want the UI Action to be hidden.

3. In the condition field, add a script that will never be true (For example ! current.canCreate() )

4. Right-click on the header and click ‘Insert and Stay’.

This will create another UI Action with all the same properties as the global one but overrides the global UI Action and hides it as well.

Make sure, the new UI action has the exact same action name and properties as the other. (Hence I advise the ‘Insert and Stay’ so that you do not have to change anything else other than the condition and the table.

 

You can follow below article:

How to hide a global UI Action/ button in Scoped applications

 

Thanks 

Rajesh Chopade

 

Hi @Rajesh Chopade1, thank you so much for the response.

i see from the sys_ui_action table, there are many "Submit" ui action, which one i should be changing?
Please advice me, thanks.

yandp_0-1718298748264.png

 

@yandp You need to deactivate the submit button which is associated with your table (part of custom application)

yandp_0-1718298748264.png

Hope this helps.

Hi Rajesh, 

Thank you so much for the detail steps.

i found it, really appreciate your help .