CharrafiMed
CharrafiMed
FFilament
Created by kailash sahu on 9/30/2024 in #❓┊help
how to stop table auto refresh when public properties updated in live wire component
your code means you have the table function in the livewire class and in the UI you have a livewire component that integrates with filament tables and you have the {{$this->table}} so the table must be in your UI !
10 replies
FFilament
Created by kailash sahu on 9/30/2024 in #❓┊help
how to stop table auto refresh when public properties updated in live wire component
that expected from livewire nature but you can stop auto refresh nature but wrapping your table portion with wire:ignore like so :
<div wire:ignore>
{{ $this->table }}
</div>
<div wire:ignore>
{{ $this->table }}
</div>
10 replies
FFilament
Created by kailash sahu on 9/30/2024 in #❓┊help
how to stop table auto refresh when public properties updated in live wire component
can you share more about your situation? What are the properties that you use? we can't help without deep dive into the code
10 replies