Arshavir
Arshavir
FFilament
Created by Arshavir on 7/9/2024 in #❓┊help
Summarising groups
Overall problem solved
8 replies
FFilament
Created by Arshavir on 7/9/2024 in #❓┊help
Summarising groups
but now it shows id not name on table group header
8 replies
FFilament
Created by Arshavir on 7/9/2024 in #❓┊help
Summarising groups
and problem solved
8 replies
FFilament
Created by Arshavir on 7/9/2024 in #❓┊help
Summarising groups
changed
->defaultGroup('question.name')
->defaultGroup('question.name')
to
->defaultGroup('question.id')
->defaultGroup('question.id')
8 replies
FFilament
Created by Arshavir on 7/9/2024 in #❓┊help
Summarising groups
can't figured out yet, any suggestion?
8 replies
FFilament
Created by Arshavir on 11/7/2024 in #❓┊help
ToggleButtons are requiring a double-click to change their state
I'm creating new repo for Leandro, and what I noted on the way If RelationManagers more than one, toggle buttons not working on modal and if only one RelationManager toggle buttons working as expected
27 replies
FFilament
Created by Arshavir on 11/7/2024 in #❓┊help
ToggleButtons are requiring a double-click to change their state
Sure
27 replies
FFilament
Created by Arshavir on 11/7/2024 in #❓┊help
ToggleButtons are requiring a double-click to change their state
Ok will do it
27 replies
FFilament
Created by Arshavir on 11/7/2024 in #❓┊help
ToggleButtons are requiring a double-click to change their state
Any suggestion?
27 replies
FFilament
Created by Arshavir on 11/7/2024 in #❓┊help
ToggleButtons are requiring a double-click to change their state
But I am in RelationManager:
class LecturersRelationManager extends RelationManager
...
class LecturersRelationManager extends RelationManager
...
Tried
protected static bool $isLazy = true;
protected static bool $isLazy = true;
no luck
27 replies
FFilament
Created by Arshavir on 11/7/2024 in #❓┊help
ToggleButtons are requiring a double-click to change their state
When filled, toggle buttons not workin on single click and works when empty textfields
27 replies
FFilament
Created by Arshavir on 11/7/2024 in #❓┊help
ToggleButtons are requiring a double-click to change their state
Also please note that happened on modal form only, on relation managers
27 replies
FFilament
Created by Arshavir on 11/7/2024 in #❓┊help
ToggleButtons are requiring a double-click to change their state
updated Filament to latest version, problem not solved!
27 replies
FFilament
Created by Arshavir on 11/7/2024 in #❓┊help
ToggleButtons are requiring a double-click to change their state
Filament version is v3.2.115, PHP 8.2, Laravel 11
27 replies
FFilament
Created by Arshavir on 11/7/2024 in #❓┊help
ToggleButtons are requiring a double-click to change their state
this is my form
return $form
->schema([
Forms\Components\TextInput::make('aaa')
->default('aaaaaa'),
Forms\Components\ToggleButtons::make('lecturer_type')
->inline()
->multiple()
->default(["practice"])
->options([
'practice' => __('Practice'),
'lecture' => __('Lecture')
])
->colors([
'practice' => 'info',
'lecture' => 'warning',
])
->icons([
'practice' => 'heroicon-o-pencil',
'lecture' => 'heroicon-o-check-circle',
])
->required(),
]);
return $form
->schema([
Forms\Components\TextInput::make('aaa')
->default('aaaaaa'),
Forms\Components\ToggleButtons::make('lecturer_type')
->inline()
->multiple()
->default(["practice"])
->options([
'practice' => __('Practice'),
'lecture' => __('Lecture')
])
->colors([
'practice' => 'info',
'lecture' => 'warning',
])
->icons([
'practice' => 'heroicon-o-pencil',
'lecture' => 'heroicon-o-check-circle',
])
->required(),
]);
27 replies
FFilament
Created by Arshavir on 11/7/2024 in #❓┊help
ToggleButtons are requiring a double-click to change their state
if Aaa empty toggles working fine, when filling with text, when click toggle button Aaa focuses, and not working, need to doubleclick
27 replies
FFilament
Created by Arshavir on 11/7/2024 in #❓┊help
ToggleButtons are requiring a double-click to change their state
No description
27 replies
FFilament
Created by Arshavir on 11/7/2024 in #❓┊help
ToggleButtons are requiring a double-click to change their state
No console errors, if textinput empty works, when filled not working
27 replies
FFilament
Created by Arshavir on 11/7/2024 in #❓┊help
ToggleButtons are requiring a double-click to change their state
I just noted on first click it focuses on other textinput field which is filled, if I clear and than click toggle button it focuses another filled textinput, if all text inputs are empty, toggle buttons clicks works as expected
27 replies
FFilament
Created by Arshavir on 11/7/2024 in #❓┊help
ToggleButtons are requiring a double-click to change their state
No it is not boolean, casting array
27 replies