Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Problem in selecting all items in a related view without effecting another related view #1302

Open
ThomasP0815 opened this issue Mar 3, 2020 · 2 comments
Labels

Comments

@ThomasP0815
Copy link
Contributor

ThomasP0815 commented Mar 3, 2020

image

image

@ThomasP0815
Copy link
Contributor Author

Possible solution in ab_actions.js

`$('.action_check_all').click(function() {

     var activeTabs = $('div.tab-pane.active');

     if (activeTabs.length > 0)
     {
       $('.action_check', $(activeTabs[0])).prop('checked', chkAllFlag).trigger("change");
       chkAllFlag = !chkAllFlag;
     }
     else
     {
       $('.action_check').prop('checked', chkAllFlag).triggger("change");
       chkAllFlag = !chkAllFlag;
     }
});`

@youngsol
Copy link

#759
seems same issue not has been solved.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants