ChesterS
Attach BelongsToMany after creating a record in from a table
Sorry, the title is weird but I'm not sure how to summarise it.
I have a many-to-many relation something like
and in the
PersonResource
table I have the following action
This works, and a new Room
record is created. But I can't find a way to attach this new record to the person we're creating the room for.
I can override the action()
function and do something like
but this way I'm losing all the built-in functionality (like the notification, the 'create another' option etc)
Is there a way to modify the process so that the default action is executed but I also get access to the created record so that I can at least save the relationship manually?
I think I'm missing something obvious here 🤔1 replies
extraModalFooterActions not working
What I want to do is customise what happens in the 'Cancel' action of a modal, but I can't find a way to do this. Here is what I've tried so far
None of the above seems to work. Like, the actions are not even executed. I don't know what I'm missing here. Most of the code is boilerplate or taken directly from the docs.
6 replies
Can't close modal from custom cancel action
I have the following field with a suffix action
As you can see, I tried everything I could think of but the modal refuses to close!
The only thing that works is the commented out
->close()
call, but then the code in the ->action()
is not actually executed6 replies
Text input gets deleted after file upload is done
I have a very simple form
The problem is that if you start a file upload and begin typing before the upload is done, some of the text you've typed gets deleted when the upload is done.
I've attached a video of how this looks. In it you can see that even though I have the 'a' button pressed, some of the text gets randomly deleted. This happens whenever a file is done uploading.
Is there a way to solve this?
Thank you.
9 replies
Is it possible to suppress a notification popup
I have a notification that is sent to another user. Something like this
However, if the
$recipient
is already at some_url
, I don't want them to actually show the popup.
Is there a way to check in the client if the current user is in that page and suppress the notification?
What I mean is, if I'm the recipient, can I prevent the notification somehow? (I obviously can't know at the time the notification is sent, only when it's received)
Hope this makes sense. Any ideas welcome1 replies
Form trying to update a field that is not in the form
This is my form (simplified)
When I try to save it, the query also includes a field that is not in the form
As you can see, there is an extra
alert
field there.
Just to be clear, the tables does have an alert column, but why is the form trying to update it if it's not in the schema?17 replies
Is it possible to make a custom action behave/look like as submit button?
Sorry if the title makes no sense.
When you upload files to a filament form, the 'submit' button changes (The label changes to 'Uploading files...', the button gets disabled and a loading indicator is added)
Is it possible to have the same behaviour with a custom action?
The only thing I managed to do is disable the button with a custom attribute
Is there a way to get the rest of the functionality? (change the label, add a loading indicator etc)
4 replies
Save form from a header action
Is it possible to save a form from a header action (or before a header action?
Let's say I have the following header actions in an edit form
Is there a way to submit the form before any of those actions is executed? Or somehow submit it inside the button action itself?
I tried this but it doesn't work
Or if there's a way to detect if a form has been changed and then ask for a confirmation to save before proceeding? Any ideas are welcome.
10 replies
Can you access the search state in a create action?
Sorry if the title doesn't make much sense
I have a select like this
Is there a way to access what the user has typed in the select to be used as a default value in the
createOptionForm
?
$component->getState()
is null12 replies
Resource visible in sidebar even if `viewAny()` returns false
As per title, I have a resource that's only available to certain users.
According to the docs here https://filamentphp.com/docs/3.x/panels/resources/getting-started#authorization the link should not be visible if they don't have access to it. However, that's not the case for me. They can still see the link but they get a 403 when trying click on it (as expected)
The navigation menu is build 'manually'
(not sure what else I need to provide. The resource itself is as boilerplate as it gets)
When I put a breakpoint in the
viewAny()
call in the policy, it looks like it's never hit.
Am I missing something or doing something wrong?13 replies
Register Filepond Plugin
There is a similar post here : https://discord.com/channels/883083792112300104/1151432989276913674
Is there a way to register a plugin for FileUpload without overriding the whole thing?
I've tried all the solutions mentioned in the above thread - except for the suggestion to override the entire
file-upload.js
file.
Here are some of the things I tried.
None of the above work for different reasons (obviously, I may be doing something wrong).
One of the problems is that the filepond stuff is loaded only when needed so it's not always available.
So, is there a way to install FilePond plugins ?
Thank you.15 replies
Show Filament notification when database notification is received
Is there a built in way to render/show a Filament notification when a database notification is received?
For example let's say I have this code
Is there a built-in way to actually render that notification when
$someUser
receives it? So they would see the equivalent of
If not, is there a callback or some sort of hook/event that's triggered so I can do this manually?
Thank you.5 replies
URL not working in repeater action?
For some reason, using the
url(...)
method doeson't work. The generated $wire.target=
is empty and as a result throws a console error
Am i doing something wrong? The URL is obviously correct since it works when I manually redirect()
to it.2 replies
Vite manifest not found when registering custom asset and deploying to production
I have a weird issue when trying to deploy to production.
I have a custom asset loaded using
However, during composer's
post-autoload-dump
the following commands are executed
both of which fail because the Vite manifest hasn't been generated yet.
The manifest is generated when I ran npm run build
but I can't do that because this fails if I haven't installed the composer dependencies yet.
So I'm in this weird catch-22 where the composer step fails because I can't build the Vite manifest, and I can't build the Vite manifest because the composer step fails.
Removing the FillamentAsset::register...
code solves the issue but it's obviously not a solution so I wonder if I'm missing something.
I use Forge/Envoyer for the deployments so most steps are vanilla Envoyer stuff. All of it worked untill I wanted to load a custom asset.
The manifest is not commited into the repo BTW. Am I supposed to commit it?35 replies
Enable Echo.js without breaking Hot Reload
Ok I'm at my wit's end here... I know this is probably not strictly Filament related, but maybe there's a JS wizard here that can help
I'm trying to enable broadcasting. Here are the relevant files
As you can see, most of the code is boilerplate. It works when I run
npm run build
, but when I run npm run dev
I get the following error.
in firefox and
inside the echo.js
file
Has anyone run into something similar? Any suggestions? Googling for this error doesn't get me anything useful.5 replies