ambonboy.
ambonboy.
FFilament
Created by ambonboy. on 1/25/2025 in #❓┊help
Form field value based on 2 other fields
Solved: My problem was in the Helper function. It wasn't returning.
7 replies
FFilament
Created by ambonboy. on 1/25/2025 in #❓┊help
Form field value based on 2 other fields
Here is the code I tried on the basis of the 'generating-a-slug-from-a-title' example in docs. The idea is that the field src_code will be generated by a helper function based on two other fields: leader, a string and execdir_id, an int. I don't know what is happening, but the first one works (leader) but nothing seems to happen when I change the execdir_id field (it is a select drop down). It eventually gives a max execution time exceeded error in the background.
->schema([
Forms\Components\TextInput::make('src_code')
Forms\Components\TextInput::make('leader')
->label('Group Leader')
->required()
->live(onBlur: true)
->afterStateUpdated(function (Get $get, Set $set) {
$src = Helpers::generateSrcCode($get('execdir_id'), $get('leader'));
$set('src_code', $src);
})
Forms\Components\Select::make('execdir_id')
->label('Executive Director of this group')
->options(function () {
return User::where('status', 'like', '%execdir%')->get()->pluck('name', 'id');
})
->live(onBlur: true)
->afterStateUpdated(function (Get $get, Set $set) {
$src = Helpers::generateSrcCode($get('execdir_id'), $get('leader'));
$set('src_code', $src);
})
->required()
->schema([
Forms\Components\TextInput::make('src_code')
Forms\Components\TextInput::make('leader')
->label('Group Leader')
->required()
->live(onBlur: true)
->afterStateUpdated(function (Get $get, Set $set) {
$src = Helpers::generateSrcCode($get('execdir_id'), $get('leader'));
$set('src_code', $src);
})
Forms\Components\Select::make('execdir_id')
->label('Executive Director of this group')
->options(function () {
return User::where('status', 'like', '%execdir%')->get()->pluck('name', 'id');
})
->live(onBlur: true)
->afterStateUpdated(function (Get $get, Set $set) {
$src = Helpers::generateSrcCode($get('execdir_id'), $get('leader'));
$set('src_code', $src);
})
->required()
7 replies
FFilament
Created by pechtelt on 8/2/2023 in #❓┊help
Class "Filament\PanelProvider" not found
I had the same problem. Turns out when I removed the 2 plugins I was using the upgrade proceeded with no problems.
54 replies