
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-08-2022 02:44 AM
Hello
Brad outline in his blog post a great example of a Multi-Row Variable Set: https://www.servicenow.com/community/developer-blog/exploring-the-multi-row-variable-set/ba-p/229153...
Currently, I would need to click on the edit button and then a pop-up appears where I can edit and finally save the value. The edit button is the one with the pencil icon. However, I am wondering whether it is possible to inline edit the different values of the set?
I tried to use embedded lists in the service portal, because such lists support inline editing. But the service portal, does not support embedded lists. Hence, I am following the approach with a Multi-Row Variable Set.
Kind regards,
Hendrik
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-08-2022 04:39 AM - edited 12-08-2022 04:40 AM
@Hendrik6 Yes we can do that using some JavaScript libraries. Ex: DataTables JavaScript library
We can include the library in ui script and add it as dependency in the widget and use library functions to render the table.
Without using any library and doing it custom way can be tedious and long process.
Please mark as correct answer if this solves your issue.
ServiceNow Community Rising Star, Class of 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-08-2022 03:00 AM
@Hendrik6 Its not possible to edit the Multi-Row Variable Set inline. There is no way to implement is as well.
Please mark as correct answer if this has helped you
ServiceNow Community Rising Star, Class of 2023

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-08-2022 03:07 AM
Thank you Jaheer!
Would it be possible to achieve this funtionality by implementing a custom widget: https://docs.servicenow.com/en-US/bundle/tokyo-servicenow-platform/page/build/service-portal/concept...
If this is possible, how difficult do you think is this task?
Kind regards,
Hendrik
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-08-2022 04:39 AM - edited 12-08-2022 04:40 AM
@Hendrik6 Yes we can do that using some JavaScript libraries. Ex: DataTables JavaScript library
We can include the library in ui script and add it as dependency in the widget and use library functions to render the table.
Without using any library and doing it custom way can be tedious and long process.
Please mark as correct answer if this solves your issue.
ServiceNow Community Rising Star, Class of 2023

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-08-2022 04:42 AM
Thank you Jaheer for your helpful insights!