You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to implement the following functionality:
The user enters a URL from an external platform (e.g., YouTube) into a text field. On the blur event, I want to load the corresponding video inside an iframe.
My form was built using a Filament resource. I thought about creating a custom field to handle the logic for dynamically loading the video based on the platform. custom field blade file:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Package
Form builder
Package Version
v3.2.127
How can we help you?
I want to implement the following functionality:
The user enters a URL from an external platform (e.g., YouTube) into a text field. On the blur event, I want to load the corresponding video inside an iframe.
My form was built using a Filament resource. I thought about creating a custom field to handle the logic for dynamically loading the video based on the platform.
custom field blade file:
Edit Page of the resource:
`
namespace App\Filament\Resources\MediaResource\Pages;
However, no matter how I trigger the videoUrlBlurred event, I always get the following error:
Uncaught TypeError: Livewire.emit is not a function
I haven’t been able to figure out how to fix this issue. Is Liverwire included by default in Filament, or do I need to configure something manually?
Any help or suggestions would be greatly appreciated!
Beta Was this translation helpful? Give feedback.
All reactions