How to set dynamic data-title in ngtable (angular plugin)

Ema.H picture Ema.H · Jun 24, 2014 · Viewed 12.6k times · Source

I want have a multi language view with an ngTable. For do that, i set in my controller a $scope.translate (a valid json) who contains my traductions. In my view i want set my data-title like {{translate.code}} etc...

my view :

<table ng-table="tableParams" class="table ng-table-responsive">
        <tr ng-repeat="product in $data">
            <td data-title="'{{translate.code}}'" > <!-- display : {{translate.code}} -->
                {{product.code}}
            </td>
            <td data-title="['translate.reference']" > <!-- display : empty -->
                {{product.reference}}
            </td>
            <td data-title="'Label'" >
                {{product.label}}
            </td>
            <td data-title="'Size'" ng-show="manageSizeColor == true">
                {{product.size}}
            </td>
            <td data-title="'Quantity'" >
                <ac-quantity minquantity="1" cquantity="product.quantity"></ac-quantity>
            </td>
            <td data-title="'Price'">
                <b>{{product.price + currency}}</b>
            </td>
        </tr>
    </table>

Answer

RMalibiran picture RMalibiran · Mar 10, 2015

If you're using angularjs ~1.2 with angular-translate ~2.6.1, translation on data-title works like this:

<td data-title="'MY_TRANSLATION_ID' | translate" >
{{product.reference}}
</td>