Adding activities to ticket conversations widget?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2020 02:33 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2020 02:35 PM
You can use below solution to get extra fields in ticket conversation widget.
Regards,
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2020 02:42 PM
Hi Sachin, thanks for responding.
I don't see the solution you're referring to.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2020 02:54 PM
You will have to clone the Ticket fields widget (attached the Ticket form page) and add the required fields in Server code (ours looks like below):
var fieldStrings = ['number', 'state', 'priority', 'sys_created_on', 'caller_id'];
if (gr.getValue('sys_mod_count') > 0) {
fieldStrings.push('sys_updated_on');
}
if (gr.getValue('state') == "7") {
fieldStrings.push("close_notes");
fieldStrings.push("close_code");
fieldStrings.push("closed_at");
}
var tableName = gr.sys_class_name + '';
if (tableName === "change_request") {
fieldStrings.push("type");
fieldStrings.push("risk");
fieldStrings.push("start_date");
fieldStrings.push("end_date");
fieldStrings.push("work_start");
fieldStrings.push("work_end");
}
Our Customized Ticket form page looks like this:
Regards,
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2020 03:05 PM
Hi Sachin,
I'm looking to add field changes with the time stamp to the "Ticket Conversations" widget, not the "Ticket Fields" widget...does your solution do that? I'm not looking to add additional fields to the "Ticket Fields" widget.