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
There are some problems with checkboxes and action buttons in lists:
If you click on the delete button in a row, it makes no sense to force an checked checkbox, since the user will be ask anyway if he want to delete the row.
If you activate in the list settings under "Links" the option "Hide checkbox" you can not use anymore the delete button(s) and custom action buttons with activated "Require Checked" option.
In the action butons "View" and "Edit" the row id is given (e. g. data-rowid="19"). This is missing in the delete buttons and in custom action buttons, that requires a checked row. So it makes no sense to deactivate the "Require Checked" option in custom action buttons (list plugin php), since the php code has no access to the rowid.
Suggestions:
Remove the require select row message on the delete button in the rows.
Add the data-rowid attribute to all buttons in a row to be able to access the row id in php code without a checked checkbox.
When the option "Hide checkbox" is activated, the delete Icon in the header should ask the user: "Do you really want to delete all listed items?" (or similar). Same for custom action buttons in the header ("Do you really want to process all listed items with action "X"?) X = Button label.
Add an option "Button in header" since it sometimes makes sence to run an action only on the current row, not on multiple selected rows.
I was confused trying to make changes on the template files, which have a "button" in the name, because they do not effect any buttons, but only links. Please make the rendering of the action buttons available as a templete too. I want to show different icons for different states of an item, so I can use the same button to toggle an action without adding a second button.
The text was updated successfully, but these errors were encountered:
There are some problems with checkboxes and action buttons in lists:
If you click on the delete button in a row, it makes no sense to force an checked checkbox, since the user will be ask anyway if he want to delete the row.
If you activate in the list settings under "Links" the option "Hide checkbox" you can not use anymore the delete button(s) and custom action buttons with activated "Require Checked" option.
In the action butons "View" and "Edit" the row id is given (e. g. data-rowid="19"). This is missing in the delete buttons and in custom action buttons, that requires a checked row. So it makes no sense to deactivate the "Require Checked" option in custom action buttons (list plugin php), since the php code has no access to the rowid.
Suggestions:
Remove the require select row message on the delete button in the rows.
Add the data-rowid attribute to all buttons in a row to be able to access the row id in php code without a checked checkbox.
When the option "Hide checkbox" is activated, the delete Icon in the header should ask the user: "Do you really want to delete all listed items?" (or similar). Same for custom action buttons in the header ("Do you really want to process all listed items with action "X"?) X = Button label.
Add an option "Button in header" since it sometimes makes sence to run an action only on the current row, not on multiple selected rows.
I was confused trying to make changes on the template files, which have a "button" in the name, because they do not effect any buttons, but only links. Please make the rendering of the action buttons available as a templete too. I want to show different icons for different states of an item, so I can use the same button to toggle an action without adding a second button.
The text was updated successfully, but these errors were encountered: