daniel-nagy / md-data-table

Material Design Data Table for Angular Material
MIT License
1.9k stars 519 forks source link

Bring md-select selected from server #663

Open camiledealano opened 1 year ago

camiledealano commented 1 year ago

After reloading the page, I would like the md-selects I selected to come already checked, how to do it?

I have this:

<table` ng-model="ctrl.itensAvaliacao" md-row-select ng-click="ctrl.teste()">
    <tr data-ng-repeat="itemAvaliacao in ctrl.paginationItens.getResultList()"
        md-select="ctrl.itensAvaliacao[itemAvaliacao.id]" md-select-id="{{itemAvaliacao}}">
    </tr>
</table>

<script>
    $scope.itensAvaliacao = [];
</script>