All Questions
159 questions
0
votes
0
answers
24
views
Are 2 load scripts normal in Livewire?
I have a question about Livewire, im bundling livewire manualy and im seeing 2 load scripts (in the head and at the bottom of the body). im not sure if this is always like this but im not sure. The ...
1
vote
1
answer
23
views
Livewire dispatched alert isn't shown
Since it isn't possible in Livewire to show an alert multiple times with like session()->flash() I tried looking for an alternative. I found a pretty good alternative, which is by dispatching an ...
0
votes
1
answer
74
views
Select2 inside Livewire Modal Not Reinitializing on Modal Reopen
I'm using Livewire in a Laravel project and have a Select2 dropdown inside a modal. The dropdown is used to select a country, and it should initialize with a list of countries while also pre-selecting ...
0
votes
1
answer
91
views
Pagination Issue with Array in Livewire 3.x :Uncaught Could not find Livewire component in DOM tree
I'm working with Livewire 3 and facing an issue when paginating a user list. I’ve applied the WithPagination trait and set the pagination theme to Bootstrap, but the pagination links don’t update the ...
0
votes
0
answers
99
views
How to make an asynchronous Multiple File Upload with Progress Bar?
I have a problem where during the file upload process the progress bar does not appear.
And I also have a problem where during the file upload process I cannot add more files that I want to upload.
...
1
vote
1
answer
105
views
Dropdown menu disappears after form submission in livewire component
I'm working on a Laravel Livewire component with a multi-select dropdown. The dropdown options are dynamically generated with JavaScript, but after submitting the form, the dropdown options disappear.
...
0
votes
0
answers
46
views
Tawk.to Widget Stops Working After Livewire Component Change in Laravel
I’m using Laravel Livewire with app.blade.php as the main layout for all pages. The app.blade.php file includes dynamic content using {{$slot}}. I’ve created a separate Livewire component for the Tawk....
2
votes
2
answers
827
views
JavaScript Not Working After Livewire Navigation but Works on Full Page Reload - Laravel
I am using Laravel Livewire for navigation within my application. My default layout includes the following scripts:
<div class="flex grow">
<x-layouts.sidebar />
&...
1
vote
1
answer
254
views
Dropdowns stop working using Livewire and wire:navigate
I'm using Livewire components integrated with the botstrap 5.3 navbar.
Everything works fine but, when I add wire:navigate to the links in the navbar, all interactive elements stop working. There are ...
0
votes
0
answers
89
views
D3.js and Livewire Integration: Points Not Appearing on Zoomed Region
I'm working on a project that integrates D3.js with Livewire (v3.4) in a Laravel application. I aim to display points (schools) on a map when a region (polygon) is clicked and zoomed in. The points ...
0
votes
1
answer
56
views
Can selected Livewire properties be just sent from a component to its template (i.e. without two-way binding)?
I have a form in a Blade template that utilises Livewire:
{{-- resources/views/page-generation.blade.php --}}
<div class="py-12">
<livewire:titlegen.form />
</div>
The ...
0
votes
0
answers
54
views
How to use hook `element.init` for re-init datepicker with wire:navigate
I create a dynamic adding element form textfield input with livewire 3. Inside this form I have a datepicker field and want to re-init every datepicker field when new element added on that form.
...
0
votes
1
answer
211
views
LIvewire 3 using wire:navigate failed
I use livewire 3 to build a form using dynamic element. So I can add multiple row element inside my form.
When I run on Manual Page Reload or navigate link click (page reload) without wire:navigate it ...
0
votes
0
answers
37
views
Web Radio API constantly refreshing
I was trying to create a way via Laravel/Livewire to create some sort of Web Socket or otherwise continuous "communicate" with my API end-point. Basically I'm creating a Web Radio that ...
0
votes
0
answers
54
views
Why livewire app raise JS error from some moment with 3 related country/state/region fields?
In laravel 10 / filamentphp 3 app I have 3 related country/state/region fields where, when user selects country, then
all states are filled correctly and had problems with filling all regions, but ...