NamedMDX display row element description name

Hi All,
Quick tip, for displaying description name of row element with MDX.
The object returned by the NamedMDX has the attributes of the element stored within result from $tm1Ui.cubeExecuteNamedMdx(…).then(function(result){}

on html page

     < tr ng-repeat="row in table.data() track by $index" >
           < td ng-repeat="el in row.elements track by $index">
                    {{el.element['attributes'].Description}}
           < /td>
    < /tr>

Thanks,
Ilia

2 Likes