Questions tagged [livewire-powergrid]

6 questions
1
vote
0 answers

Making the id clickable and able to load a route in Livewire Powergrid instead of using buttons

I have a table using Livewire Powergrid. It has the following columns: id name email I want to be able to click the data in the id column that loads and load a laravel route. I am able to create buttons that do this and load a laravel route. This…
MatHatrik
  • 762
  • 1
  • 6
  • 16
0
votes
0 answers

Class "PowerComponents\LivewirePowerGrid\Responsive" not found Laravel

Good morning, I am trying to use the responsive class in powergrid but I get the error: Class "PowerComponents\LivewirePowerGrid\Responsive" not found. I have installed the latest version of PowerGrid for laravel and configured everything but I get…
0
votes
0 answers

Modal not showing properly in Laravel Livewire Powergrid

I am using Laravel livewire powergrid and want to do a CRUD operation using modal. In my Controllers/Livewire/Users/UserTable.php component public function actions(): array { return [ Button::make('edit', '
0
votes
0 answers

LiveWire PowerGrid - auto update table (remove item) after delete

I have following code: /** * PowerGrid Skill Action Buttons. * * @return array */ public function actions(): array { return [ Button::make('edit', 'Edit') …
Sasha
  • 8,521
  • 23
  • 91
  • 174
0
votes
0 answers

Method PowerComponents\LivewirePowerGrid\Button::confirm does not exist. Laravel Livewire Powergrid Error

Method PowerComponents\LivewirePowerGrid\Button::confirm does not exist. I using laravel powergrid table action buttons now i click delete delete button confirmation alert not working show this error My Livewire Action code public function…
0
votes
0 answers

Powergrid table row action button unclickable after modal closed event

What I have in my laravel project Livewire powergrid for displaying tables. Livewire-ui-modal (use to have the confirm dialog from the button of the table) What I have succeeded I have displayed my table as accordingly to my requirement using…