© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
11 replies
KoksAgent

Refresh Table after performed action in Widget

How do I refresh the List page of a resource after I performed an action in a Widget on the List page
Solution
add in your ListPage

use Livewire\Attributes\On;

#[On('updatePage')]
public function updatePage(): void
{
    //...
}
use Livewire\Attributes\On;

#[On('updatePage')]
public function updatePage(): void
{
    //...
}


use in your action
$this->dispatch('updatePage');
$this->dispatch('updatePage');
Jump to solution
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Refresh table widget in dashboard after success create record using action
FilamentFFilament / ❓┊help
2y ago
Refresh a modal after an extra footer action is performed?
FilamentFFilament / ❓┊help
2y ago
refresh table widget after tab button changed
FilamentFFilament / ❓┊help
16mo ago