PhanLys
PhanLys
FFilament
Created by PhanLys on 4/1/2025 in #❓┊help
Help me add data to a repeater field using a modal which is a table in a Livewire component.
Thank you.
9 replies
FFilament
Created by PhanLys on 4/1/2025 in #❓┊help
Help me add data to a repeater field using a modal which is a table in a Livewire component.
->action(function (vattu $record) {
$this->dispatch('vattuSelected', [
'id' => $record->id,
'TenVT' => $record->TenVT,
'soluong' => 1,
'ghichu' => '',
]);
}
)
->action(function (vattu $record) {
$this->dispatch('vattuSelected', [
'id' => $record->id,
'TenVT' => $record->TenVT,
'soluong' => 1,
'ghichu' => '',
]);
}
)
9 replies
FFilament
Created by PhanLys on 4/1/2025 in #❓┊help
Help me add data to a repeater field using a modal which is a table in a Livewire component.
Finally, I got it to work! I had thought that the resource file was also a Livewire component, but it turns out it's not. I added this code to the create page file, and it worked.
protected $listeners = ['vattuSelected' => 'handleVattuSelected'];

public function handleVattuSelected($record): void
{
$state = $this->form->getState();

$state['dsvattu'][] = [
'id' => $record['id'],
'TenVT' => $record['TenVT'],
'soluong' => $record['soluong'],
'ghichu' => $record['ghichu'],
];

$this->form->fill($state);

}
protected $listeners = ['vattuSelected' => 'handleVattuSelected'];

public function handleVattuSelected($record): void
{
$state = $this->form->getState();

$state['dsvattu'][] = [
'id' => $record['id'],
'TenVT' => $record['TenVT'],
'soluong' => $record['soluong'],
'ghichu' => $record['ghichu'],
];

$this->form->fill($state);

}
9 replies
FFilament
Created by PhanLys on 4/1/2025 in #❓┊help
Help me add data to a repeater field using a modal which is a table in a Livewire component.
But they are on different Livewire components, right? Can you listen to events from other Livewire components? Honestly, I don't understand much about Livewire. I found a guide on the Filament tutorial website, but it's not free
9 replies