Atreides
Atreides
FFilament
Created by Atreides on 10/7/2024 in #❓┊help
How to easily center a label
@Leandro Ferreira Thanks, very good solution 👍
7 replies
FFilament
Created by morawcik on 10/4/2024 in #❓┊help
Get current item position in repeater or uuid in repeater mutateRelationshipDataBeforeCreateUsing
@morawcik I dont know of a possibility, but maybe this could help you: https://discord.com/channels/883083792112300104/1147995447332438077
4 replies
FFilament
Created by jamesro on 10/9/2024 in #❓┊help
dynamic repeater fields names
@jamesro I think this could be, what you are searching for: https://discord.com/channels/883083792112300104/1147995447332438077
4 replies
FFilament
Created by jamesro on 10/9/2024 in #❓┊help
dynamic repeater fields names
@Lara Zeus that wasnt the question, the question is, how can we set the $numberOfRepeaterItem to the actual item key
4 replies
FFilament
Created by Atreides on 10/7/2024 in #❓┊help
How to easily center a label
Finally i just removed the label (by using ->label('') ) and added a Placeholder right above the field, with ->content() and added the Titel there. With HtmlString I could position the Title like I wanted
7 replies
FFilament
Created by Atreides on 10/7/2024 in #❓┊help
How to easily center a label
Does nobody know a solution?
7 replies
FFilament
Created by jaap4677 on 7/6/2023 in #❓┊help
Set default value for colorpicker.
Yeah, if you need a "default" on existing one, just work with afterStateHydrated, and check if its already set, otherwise set a default. Like this: ->afterStateHydrated(function (Set $set, YourModel $yourModel) { $set('your_model_attr', $yourModel->your_model_attr ?? "default"); })
6 replies
FFilament
Created by ssmusoke on 8/4/2023 in #❓┊help
Saving Wizard Form Contents at Each Step
use Filament\Forms\Components\Actions\Action; use Filament\Forms\Components\Wizard; Wizard::make([ // ... ]) ->nextAction( fn (Action $action) => $action->label('Save & next'), )
8 replies
FFilament
Created by Atreides on 7/29/2024 in #❓┊help
Filament Wizard Step change from visible to hidden error
Fixed this with a workaround, where i hide the last step via setTimeout(function () {document.getElementById("checkout").classList.add("hidden"); }, 0); when the hidden step gets visible
4 replies
FFilament
Created by jey on 7/26/2024 in #❓┊help
how to show a modal when press next on wizard step
To open a modal in filament form take a look at answer from mickey pearson in this stack overflow thread: https://stackoverflow.com/questions/77869848/opening-a-modal-in-filament-php
6 replies
FFilament
Created by Atreides on 7/29/2024 in #❓┊help
Filament Wizard Step change from visible to hidden error
bump
4 replies
FFilament
Created by jey on 7/26/2024 in #❓┊help
how to show a modal when press next on wizard step
i think you should try to work with visible() on the wizard steps, and change the condition-outcome by your modal. But its not that easy. Especially because I have currently a problem, that the Wizard struggles with steps becoming visible from hidden (opposite is okay).
6 replies
FFilament
Created by EMMAN on 7/27/2024 in #❓┊help
It is possible to add 'SEACH BAR' on Filament Tabs
As of my knowledge its not possible. You need to add that custom
6 replies
FFilament
Created by Atreides on 7/9/2024 in #❓┊help
How to get active tab in beforeValidation()
I think i will build a new custom component now since i did not found an answer after 8 hours research
2 replies