Questions tagged [livewires]

LiveWires is a Python package designed to be used as part of the "LiveWires" programming course, a course intended to teach Python to young, first-time programmers. LiveWires might also refer to the course itself.

LiveWires is a Python package designed to be used as part of the "LiveWires" programming course, a course intended to teach Python to young, first-time programmers. It is built on top of and .

The LiveWires package is licensed under the

160 questions
0
votes
1 answer

Laravel Livewire : select in modal close the modal with no rendering

I'm trying to have a select in a modal, in order to have a contact formular in my application. The view is ok, the select is here, but when I select one of the options, the modal close and block everything. I'm in a livewire…
Ramothe
  • 21
  • 6
0
votes
1 answer

Module error for 'beginners' in livewires MacOS - beginner

I am a beginner at python and is following a book named 'Python programmming for the absolute beginner' and has issues on importing livewires. When I write from livewires import games it pops up with the error: line 1, in from livewires…
0
votes
1 answer

Can we load Livewire Component on clicking some button?

I have a Livewire component with a button, and I want to append a form (i.e another livewire component) by clicking that button. Like we do that by using ajax, requesting to the backend to load HTML and append with jQuery. So question is, can we do…
mrcoder
  • 350
  • 2
  • 13
0
votes
2 answers

Livewire & Select2

I am using Livewire and Slect2 in my project and I am code to select 2 javascript also but select 2 value is not passed to the database here is my code My Blade File
0
votes
2 answers

how show input and hide input at same time with conditon from database ,

Imran
  • 11
  • 2
0
votes
3 answers

wire model does not receive the information

I am making a comment system, livewire works correctly in other parts of the system but when I want to edit a comment the wire:model does not receive the information, however if I print the variable on the view it shows it correctly. I show the code…
Alberto
  • 163
  • 2
  • 13
0
votes
1 answer

Quick debugging question [Python, pygame]

It's still an incomplete program, but for some reason the value of the textbox doesn't increase when it should... Why is this?? When the Pizza sprite overlaps with the Pan sprite, the score in the textbox is supposed to increase in value by 10. Why…
Louis93
  • 3,843
  • 8
  • 48
  • 94
0
votes
2 answers

Laravel Livewire The POST method is not supported for this route

As soon as I inserted this title the system showed me all the similar questions, and none of them help me. I get this error "The POST method is not supported for this route." no matter what I try. Even worse, is I already made another component with…
Bidzey
  • 41
  • 1
  • 6
0
votes
2 answers

Debugging simple Ping-Pong game?

I've been programming a simple ping-pong game using Python's Pygame as run through Livewires. I've posted the question and a similar sample game code that runs perfectly as not everyone here will be versed in livewires and/or pygame. Here's the…
Louis93
  • 3,843
  • 8
  • 48
  • 94
0
votes
1 answer

Debugging Python pygame being run through livewires

Python seems to completely ignore one of my objects - the games.Text object. Can't seem to understand why, syntax seems correct. Here's the code. from livewires import games #Creating and validating the pygame screen. myscreen = games.Screen…
Louis93
  • 3,843
  • 8
  • 48
  • 94
0
votes
1 answer

Crud operation with same modal Livewire

I'm using livewire for a new project so I want my crud operation with modal, in that case, I want to use one modal who responsible for creating and updating like vuejs. I try to do like this but this not work In my blade
Shekh Saifuddin
  • 470
  • 2
  • 6
  • 27