Spacing between checkboxes when using "g_modal.showfields"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2023 03:46 AM
Is it possible to remove the spacing between the checkboxes?
The window is created by a UI action Workspace Client script using the "g_modal.showFields".
if(attArray){
for (var i = 0; i < attArray.length; i++) {
fields.push({
type: 'boolean',
name: attArray[i].id,
label: attArray[i].name,
mandatory: false
});
}
}
g_modal.showFields({
title: "Deleger child",
fields: fields,
size: 'lg',
height: 'md'
}).then(function(fieldValues) {
});
- Labels:
-
Agent Workspace
-
UI action
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2023 03:49 AM
Hello @Magnus2 ,
I dont think we can edit the spacing between the fields but try one thing
Reduce the size of the modal window from md to sm which is small .It might reduce the spacing if the size of the window is reduced.
Hope this helps
Mark my answer correct if this helps you
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2023 05:03 AM
Thanks for the reply, but changing the window size did not help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2023 05:42 AM
@Magnus2 Then as far as i know i guess there is no way to do this as API is in built.
Hope this helps
mark my answer correct if this helps you
Thanks