- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2022 02:57 AM
Hi experts!
How can i add Short Description into the Change Schedule view?
Thanks all for the help!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2022 11:43 PM
Update - I have fixed this now:
UI Script: change_soc
Approx. line 40:
SHORT_DESCRIPTION: "short_description",
Approx. line 163
{
name: SOC.COLUMN.SHORT_DESCRIPTION,
label: i18n.getMessage("Short Description"),
align: "left",
width: 220,
min_width: 220,
resize: true,
template: function (content) {
return "<span>" + content[SOC.COLUMN.SHORT_DESCRIPTION] + "</span>" + "<span data-toggle='tooltip' data-trigger='hover focus click' data-container='body' data-placement='auto bottom' class='select-task icon-target'"
+ "data-original-title='" + msgSelectRecord + "'" + "</span>";
}
},
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2024 08:40 AM
this solution is not working for me . when i have updated the same code for this UI script - change_soc.
{
name: SOC.COLUMN.SHORT_DESCRIPTION,
label: i18n.getMessage("Short Description"),
align: "left",
width: 220,
min_width: 220,
resize: true,
template: function(content) {
return "<span>" + content[SOC.COLUMN.SHORT_DESCRIPTION] + "</span>" + "<span data-toggle='tooltip' data-trigger='hover focus click' data-container='body' data-placement='auto bottom' class='select-task icon-target'" +
"data-original-title='" + msgSelectRecord + "'" + "</span>";
}
},
Attached the screen shot where i have made the changes. but still it is not working, can you please provide the correct answer.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2022 03:49 AM
I did something like that:
{
name: SOC.COLUMN.SHORT_DESCRIPTION,
label: i18n.getMessage("Short Description"),
align: "left",
width: 220,
min_width: 220,
resize: true,
template: function (content) {
var short_description = content.record[SOC.COLUMN.SHORT_DESCRIPTION].display_value ? content.record[SOC.COLUMN.SHORT_DESCRIPTION].display_value : '';
return "<span data-toggle='tooltip' data-trigger='hover focus click' data-container='body' data-placement='auto bottom' " +
"data-original-title='" + short_description + "'>" +
short_description +
"</span>";
}
},
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2024 06:17 AM
Hello,
Did you manage to fix this, I am getting similar issue where the column shows undefined