question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Strange issue with multiple attribute and checkAll

See original GitHub issue

I’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:closed
  • Created 7 years ago
  • Comments:5 (2 by maintainers)

github_iconTop GitHub Comments

2reactions
prostoandreicommented, Mar 31, 2016

Yep, it’s resolved! Nice work 😃

0reactions
daniel-nagycommented, Mar 31, 2016

Can you update to v0.10.2 and tell me if that resolves this issue?

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found