How to configure Visual task board
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-08-2017 06:41 AM
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-08-2017 05:09 PM
- The title of task cards is always the short_description field. This is from a hard coded angular file (vtb_card) and can't be changed. The only way to change the title of the card is to change the short description of the related task. I looked at the code and the short_description field literally is hard coded as the title. See below code:
$scope.shortDescription = card.record.getValue('short_description'); - The layout of the popup is also determined by a hard coded angular file (vtb_card_details). It is a series of <div> tags that are statically defined.
The only way to customize these two aspects of VTB would be to write some pretty hefty DOM manipulation, which I can't say I recommend since it would likely break every time you upgrade. Sorry I can't give you the answer you were looking for. It would certainly be nice to be able to customize these two UI's. Perhaps someone will see this post and add it to the product!!