Washington DC - Org Chart
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-24-2024 06:20 AM
We just upgraded to Washington DC and faced an issue within the Org Chart widget (Organization Chart (EC)).
This is what it looked like in Vancouver:
and this is what we got after an upgrade:
No styling to the card container at all. For managers it workers fine, but for his reports its like this.
To fix this I had to change the HTML code for Organization Chart (EC) widget like this:
replace this part:
<!-- Direct report hierarchy -->
<div id="directReportContainer" ng-if="data.directReports.length > 0 && expandDirectRepotees" role="tabpanel" aria-labelledby="directReportContainer">
<div ng-repeat="user in data.directReports; track by user.userId" class="flex-display">
<div ng-include="'primary-card'" class="flex-display" onload="cardType='secondary'"/>
with this:
<!-- Direct report hierarchy -->
<div id="directReportContainer" ng-if="data.directReports.length > 0 && expandDirectRepotees" role="tabpanel" aria-labelledby="directReportContainer">
<div ng-repeat="user in data.directReports; track by user.userId" class="flex-display">
<div ng-include="'primary-card'" class="flex-display" onload="cardType='primary'"/>
0 REPLIES 0