Strange issue with multiple attribute and checkAll
See original GitHub issueI’m put multiple attribute in md-table, but checkAll checkbox isn’t appearing. But the ability to select more than one check box appears.
What can be wrong?
I have code like this.
<md-table-container>
<table md-table md-row-select multiple ng-model="codes.helper.selected" md-progress="codes.helper.deferred">
<thead md-head md-order="codes.helper.query.order" md-on-reorder="codes.helper.onChange">
<tr md-row>
<th md-column md-order-by="code" ng-bind="'CATALOG_TYPE_LICENSECODE'|translate"></th>
<th md-column md-order-by="activationTime" ng-bind="'STATUS'|translate"></th>
<th md-column md-order-by="activationTime" ng-bind="'CATALOG_LICENSECODE_ACTIVATION_DATE'|translate"></th>
<th md-column md-order-by="activationAccount.name" ng-bind="'CATALOG_LICENSECODE_ACTIVATED_BY'|translate"></th>
</tr>
</thead>
<tbody md-body>
<tr md-row
md-select="l"
md-select-id="l.id"
ng-repeat="l in codes.helper.list track by l.id"
ng-disabled="l.activationTime">
<td md-cell ng-bind="l.code"></td>
<td md-cell>
<span ng-if="l.activationTime" translate="STATUS_ACTIVATED"></span>
<span ng-if="!l.activationTime" translate="STATUS_NOT_ACTIVATED"></span>
</td>
<td md-cell>
<span ng-if="!l.activationTime">-</span>
<span ng-if="l.activationTime" ng-bind="l.activationTime|date:'dd.MM.yyyy HH:mm'"></span>
</td>
<td md-cell>
<span ng-if="!l.activationAccount.name">-</span>
<span ng-if="l.activationAccount.name" ng-bind="l.activationAccount.name"></span>
</td>
</tr>
</tbody>
</table>
</md-table-container>
<md-table-pagination md-label="codes.helper.label"
md-limit="codes.helper.pagination.limit" md-page="codes.helper.pagination.page"
md-total="{{codes.helper.pagination.total}}" md-on-paginate="codes.helper.onPaginate"
md-limit-options="codes.helper.paginationOptions">
</md-table-pagination>
Issue Analytics
- State:
- Created 7 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
jquery attr('checked','checked') works only once - Stack Overflow
The code is intended to work as follows: - click on input.select_all triggers the event - if input.select_all is checked: add attribute checked ......
Read more >Strange issue in Quality BW - SCN - RSSing.com
We are facing a bizarre issue in BW quality where values are getting changed for a attribute of 0CUSTOMER while loading the Data...
Read more >Lincoln's Second Inaugural Address 1 Flashcards - Quizlet
Study with Quizlet and memorize flashcards containing terms like Which lines from Lincoln's Second Inaugural Address appeal to pathos? Check all that apply....
Read more >Strange error using inline editing and tabs in combination - Aware ...
I´m almost sure this is not the case but I will doublecheck. Another related question: Is it ok to have same attribute namne...
Read more >B Troubleshooting Gadget models | Building models using the ...
Then check all directories involved to see that it matches the search directories: What is your current R working ... B.2 Fleet /...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Yep, it’s resolved! Nice work 😃
Can you update to
v0.10.2
and tell me if that resolves this issue?