Agent Workspace Attachment dialog window
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2023 01:09 PM
Hi All,
Does anyone know of a way to disable the Upload a file dialog box in agent workspace when you click on browse? We do not want users to be able to rename the file they are uploading.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2023 09:25 AM
To disable the Upload a file dialog box in Agent Workspace in ServiceNow, you can modify the UI Action for the "Browse" button on the form where you want to disable it. Here are the steps you can follow:
- Open the form where you want to disable the Upload a file dialog box.
- Click on the gear icon on the top right corner and select "Configure Form Layout".
- Click on the "UI Actions" tab.
- Search for the "Browse" UI Action and click on it to edit it.
- In the script field, replace the code with the following:
function browseForAttachment() {
var input = document.getElementById('file'); // replace 'file' with the ID of the file input field
input.click();
}
- Save the UI Action.
This code replaces the default behavior of the "Browse" button with a function that programmatically clicks the file input field instead of opening the Upload a file dialog box. This way, users will not be able to rename the file they are uploading.
Note: Before modifying any ServiceNow configuration, it is recommended that you test the changes in a non-production environment to ensure that they work as expected and do not cause any issues.
Please mark my reply as Helpful and/or Accept Solution, if applicable. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2023 05:26 PM
No luck so far. If i go to the ui actions on the hr case table in this example, there is no ui action named browse and if i search all tables none that are related to attachment.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2023 11:28 PM
did you manage to solve this? I would like to disable this windows aswell
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-02-2024 04:59 AM