You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When adding the "-Collapse All" "+Expand All" buttons, their events generate a "Unable to get property 'parents' of undefined or null reference".
I found that adding the'$table' as a parameter to the two calls to '_collaptable' from the ".act-button-expand-all" and ".act-button-collapse-all" to the click events fixed it, which is identical to what the '".act-button-expand" was doing.
Previous: _collaptable($('.act-more', $(item)));
New: _collaptable($table, $('.act-more', $(item)));
The text was updated successfully, but these errors were encountered:
When adding the "-Collapse All" "+Expand All" buttons, their events generate a "Unable to get property 'parents' of undefined or null reference".$('.act-more', $ (item)));$table, $ ('.act-more', $(item)));
I found that adding the'$table' as a parameter to the two calls to '_collaptable' from the ".act-button-expand-all" and ".act-button-collapse-all" to the click events fixed it, which is identical to what the '".act-button-expand" was doing.
Previous: _collaptable(
New: _collaptable(
The text was updated successfully, but these errors were encountered: