Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2019 03:20 AM
Hello All,
After a while i was able to come up with a solution.
Here is the solution:
I've added to the following line (in red) to the Server Script:
var gr = $sp.getRecord();
if (gr) {
data.state = gr.getValue('state');
data.stateLabel = gr.getDisplayValue('state');
data.sys_updated_on = gr.sys_updated_on.toString();
data.label = gr.getLabel();
data.table = gr.getRecordClassName();
data.sys_id = gr.getUniqueValue();
data.CloseNotes = gr.getValue('close_notes');
}
And the following lines to the HTML:
<label>Solution:</label>
<p>{{data.CloseNotes}}</p>
It is not the prettiest solution, but it is working =).
Thank you all.