DomThomas
DomThomas
FFilament
Created by DomThomas on 3/26/2025 in #❓┊help
I don't understand how I can refresh a field
I want to use a HintAction on a field and refresh another. with a codebase like this :
Forms\Components\RichEditor::make('long_description')
->reactive()
->hintAction(
Action::make('getAIDescription')
->label('Récupérer la description depuis AI')
->action(function (Product $record, EditProduct $livewire, Set $set) {
// I TRIED A LOT OF THING
$text = AIService::getDescription($record);
$set('ia_description',$text);
// return $livewire->dispatch('refreshPage');
})
)
->label('Description longue'),

RichEditor::make('ia_description')
->label('Description IA'),
Forms\Components\RichEditor::make('long_description')
->reactive()
->hintAction(
Action::make('getAIDescription')
->label('Récupérer la description depuis AI')
->action(function (Product $record, EditProduct $livewire, Set $set) {
// I TRIED A LOT OF THING
$text = AIService::getDescription($record);
$set('ia_description',$text);
// return $livewire->dispatch('refreshPage');
})
)
->label('Description longue'),

RichEditor::make('ia_description')
->label('Description IA'),
7 replies
FFilament
Created by DomThomas on 5/23/2024 in #❓┊help
Did you install wepinsert component from wireElements in filament ?
The component "work" but it's not display.
2 replies
FFilament
Created by DomThomas on 5/17/2024 in #❓┊help
Is it possible to do two exports on the same Model ?
I need two differents exports for the same model, but I don't know how I can do...
3 replies
FFilament
Created by DomThomas on 4/6/2024 in #❓┊help
Keep the database notification on close
What I'm trying to do: - I want to keep database notifications in databases after users close the notification. For example, it allows you to change a notification to an unread statement. What I have done: - I searched a lot, but I think that with the kernel it is not possible, I created this discussion. I'm willing to try to do PR, but I don't want to be "up in the air" :). I think it's not really a plugin, just a new notification setup. https://github.com/filamentphp/filament/discussions/12124#discussion-6442633 What's do you think about ? If you are agree, 👍 on the discussion
2 replies
FFilament
Created by DomThomas on 4/1/2024 in #❓┊help
Uncaught (in promise) TypeError: Cannot read properties of null (reading 'insertBefore')
Hi, Did you seen this error when you used FileUpload::imageEditor ? When I click on the pencil, nothing happened.
5 replies