- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-26-2020 02:47 AM
Hello All,
I want to hide the "Submit" button from a form in scoped application.
I have already tried the below code, which works in any other table created in a global scope, but since $$ is not supported in a scoped application, the same script doesn't work :-
var items = $$('BUTTON').each(function(item) {
if (item.innerHTML == 'Submit') {
item.hide();
}
});
Please let me know if someone succeeded in hiding the submit button for a custom table in a scoped application.
Thanks in advance.
Regards,
Sanket Shinde
Solved! Go to Solution.
- Labels:
-
Scoped App Development
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-26-2020 03:26 AM
Hello Sanket,
You can do this by defining a new UI action 'Submit' on that specific table in your scoped app with the same UI action name 'sysverb_insert' but not enabling it either as form button or form link, etc.
Please refer to the screenshot below to see how this UI action should look like:
Thanks,
Pratyusha

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-26-2020 02:59 AM
Hi Sanket,
Please refer to the below thread with the similar issue:
Kindly mark my answer as Correct and helpful based on the impact.
Regards,
Alok
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-26-2020 06:59 AM
Thank you, Alok for the response.
Regards,
Sanket Shinde
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-26-2020 03:26 AM
Hello Sanket,
You can do this by defining a new UI action 'Submit' on that specific table in your scoped app with the same UI action name 'sysverb_insert' but not enabling it either as form button or form link, etc.
Please refer to the screenshot below to see how this UI action should look like:
Thanks,
Pratyusha
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-26-2020 06:55 AM
Thank you, Pratyusha.
It was a quick and simple solution.
Regards,
Sanket Shinde