daniel-nagy / md-data-table

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

Show boolean values #495

Open masalinas opened 7 years ago

masalinas commented 7 years ago

Is possible to format the true/false value of a cell inside for example like a checkbox or swith component??

Regards

TheCoder84 commented 7 years ago

@masalinas yes you can do like that

        <td md-cell>
             <md-checkbox ng-model="user.activated"></md-checkbox>
        </td>

and if you enabled row selection

      <td md-cell ng-click="vm.editCheckBox($event, user)">
            <md-checkbox ng-model="user.activated"></md-checkbox>
       </td>
       var vm = this;
       vm.editCheckBox = editCheckBox;

        function editCheckBox(event, user) {
            event.stopPropagation();
        }