Replies: 5 comments 2 replies
-
+1 for this idea! |
Beta Was this translation helpful? Give feedback.
-
Hey @mucan54. We can already specify the checkbox in the table, for example: TD::set('id')
->render(function (User $user){
return CheckBox::make('users[]')
->value($user->id)
->placeholder($user->getNameTitle())
->checked(false);
}); With any method of processing, the values will be sent and can be bulk processed. (#1468) I thought of copying this concept for the CRUD package since the rules are much stricter than for general screens. But so far, I was in no hurry with this since I never had a real need for mass processing of records that need to be selected manually. Would you like to work on this implementation? |
Beta Was this translation helpful? Give feedback.
-
Any chance to add Listener to Switcher component in table layout? When change true/false to call function? |
Beta Was this translation helpful? Give feedback.
-
Hello, how do you use bulk actions? Why did vi to put the checkbox, but how to make the button at the top grab the selected checkbox? |
Beta Was this translation helpful? Give feedback.
-
It would be possible to add a row at the end of the table containing a select field and a button. I have already used the total row elsewhere. |
Beta Was this translation helpful? Give feedback.
-
Maybe we can make mass actions in grid with checkbox at the first column and maybe a select box at the top of grid to select witch action will be done with selected rows.
Beta Was this translation helpful? Give feedback.
All reactions