How to customer advanced risk assessment "Control Assessment" form?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2023 05:11 AM
I have some business requirement to display another control fields in the control assessment form. (OOTB.png)
I find the UI Page[advanced_assessment] and I can modify Line 266-277, then I am able to add a new column on the form.( Please refer attached image "modified.png")
My question is how can I get the field information and put them to this form?
I am searching the script but I could not find it. Please advice. Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2023 05:41 AM
OOTB:
Modified :
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2024 01:56 PM
Did you ever get an answer I am facing the same issue. I can create a new column and populate it with data from any of the columns already there (Like Status), but if I try to pull description or exempt it never pulls it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2024 07:25 PM
I think it's very hard to add a new column to this UI page, but you can consider replacing the current column with the column that you want to display.
You can find the script include[RiskAssessmentUtilsBase] and the function [_generateIndividualControlAssessmentResponsesJson].
This is the function to get the value from control and pass to the advanced_assessment UI page.
for example:
factorJson.status = control.getDisplayValue('status');
You can change the status to description.
Hope this is help you!