attachments in workspace
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2023 07:29 AM
i have a requirement in configuration workspace to remove attachment icon .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2024 10:15 PM
Hi @Tai Vu
here are the below snaps, please follow the number of file name.
UX screen sysid:- 4bd685bc43b47110cc25ff53e9b8f27c
ux screen condition :- 898beb9093530210e69afa497bba10a8
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2024 12:09 AM
The issue is because of the line 14 & 15 from your screenshot "ux 3".
Let change it from
function isChangeClosed(change_request, record_id){
var gr = new GlideRecord('change_request');
to
function isChangeClosed(table_name, record_id){
var gr = new GlideRecord(table_name);
Or you can keep the param name change_request, just remove the quote inside the GlideRecord. Like below.
function isChangeClosed(change_request, record_id){
var gr = new GlideRecord(change_request);
Cheers,
Tai Vu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2024 09:26 AM
you can try this way for the above question to work
"type": "MAP_CONTAINER",
"container": {
"table": {
"type": "DATA_OUTPUT_BINDING",
"binding": {
"address": [
"sowrecordctrl",
"table"
]
}
},
"sysId": {
"type": "DATA_OUTPUT_BINDING",
"binding": {
"address": [
"sowrecordctrl",
"sysId"
]
}
}
}
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2024 11:14 PM
Hi @Tai Vu,
We have similiar requirement : to hide the attachment icon for one table . However we created a new custom experience (workspace) and not using any OOB workspaces. When we navigate to [sys_ux_macroponent] we couldn't see any record with that workspace. From UI Builder we can see the attachment icon. How do we hide it in this case. We can't locate the reference attachment in this above mentoned table
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2024 06:35 AM
Hi @Tai Vu,
How can we set it based on the state of the case? For instance, if the state is closed which is "3". In platform view, there is a client script that works but it doesn't apply to the configurable workspace. Thanks