Custom HTMX Events, Tailwind form styling, Hyperscript: so many interesting topics packed in this tutorial! 🥳 Thank you BugBytes!
@bugbytes39232 жыл бұрын
Thank you Sil! Glad you enjoyed it.
@seydinaoumarsamabaly18062 жыл бұрын
Everytime I receive notification of a new video from your channel, I know immediately that I will learn something new or update my skills to high level. Thank you for everything. God bless you.
@bugbytes39232 жыл бұрын
Thank you my friend. Much appreciated! I'm glad you're learning new things and enjoying the videos!
@theodoreivanov6257 Жыл бұрын
Any effort to bring together htmx/hyperscript and our favourite back-ends, be they in Python, Go or other, is worthy of big praise.
@robhafemeister31002 жыл бұрын
As always, another EXCELLENT video, makes my day when I receive a notification that you have a new video. Definitely my favorite channel.
@bugbytes39232 жыл бұрын
That means a lot man. Thanks so much! Glad you enjoyed this one.
@khunjohn10542 жыл бұрын
As usual, awesome content. I just started writing htmx and _hyperscript in production code. I picket _hyperscript over Alpine because the tight htmx integration. Your videos helped me get started.
@bugbytes39232 жыл бұрын
That's awesome, nice one! Thanks for that.
@wiki-infodevelopment33692 жыл бұрын
I am sure it will be good :) I'm watching
@bugbytes39232 жыл бұрын
Thank you very much!
@esmondadjei Жыл бұрын
Love the stack: HTMX, HyperScript, Tailwind and Django. Can build apps at turbo speed. Should be called the Turbo stack
@arnaudpoutieu13312 жыл бұрын
Great one as usual!!!
@bugbytes39232 жыл бұрын
Thanks a lot!
@iRageKamikaze Жыл бұрын
To avoid re-fetching all books with the `bookAdded` event could you instead return an out-of-band element in the form response with the new book element? I think you'd need to use a normal swap on form submit to add the element using `beforeEnd` to the book list and then use an `hx-select-oob` to swap in the hidden book form
@aidoskanapyanov30952 жыл бұрын
Amazing content! You've got one of the best tutorials on KZbin 👏
@bugbytes39232 жыл бұрын
Thanks a lot, that's amazing to hear! :)
@umni_kot2 жыл бұрын
very high quality and great content. thank you very much don't stop!
@bugbytes39232 жыл бұрын
Thank you, I appreciate it!
@DavidSoles2 жыл бұрын
Thank you for this amazing explanation.
@bugbytes39232 жыл бұрын
Hey, you’re welcome, glad you found it useful!
@TravisPickle2 жыл бұрын
awesome tut. thanks for htmx and hyperscript + django
Another great tutorial. Thanks man, we all appreciate you!
@bugbytes39232 жыл бұрын
Thanks a lot Gustavo, that's a nice comment!
@repotranstech2 жыл бұрын
As usual much appreciated for top notch content.👍
@bugbytes39232 жыл бұрын
Thanks!!
@raffritter67662 жыл бұрын
👏
@repotranstech2 жыл бұрын
Just a recommendation,use bootstrap in future for your styles such that it doesn't obstruct the main theme which is Django and Htmx.
@bugbytes39232 жыл бұрын
Thanks for that feedback. Some people love Tailwind, others have mentioned that they prefer the Django/backend stuff. I'll try and mix it up in future.
@ayubkara10922 жыл бұрын
Excellent content as always , i have a request please can you make a video about interactive forms like for example choosing an option from a drop down list can make another field on the form appear or disappear
@bugbytes39232 жыл бұрын
Thanks man, appreciate that. Yes, I'll do more form stuff with a variety of technologies (HTMX, Hyperscript, Alpine, django-formset) in the near future.
@ayubkara10922 жыл бұрын
@@bugbytes3923 looking forward to it
@franciscodelafruitas94242 жыл бұрын
Would love to see a unique number/ID automatically generated and added on each book added. As well as number of book copies, checkout books, books removed from the database when checked out. Of course books would have to be added back in if 'checkout' is cancelled. Would unicorn be better suited? Excellente content thanks!
@repotranstech2 жыл бұрын
There is a package for that short uuid check it out,it's quite simple.
@مقاطعمترجمة-ش8ث Жыл бұрын
Please keep this framework as simple as it now, don't make it complicated and had tons of feature that no one will use,
@NgazetungueMuheue2 жыл бұрын
Greatwork, i like this. can you please do add to cart with htmx + hyperscipt + alpine in future if possible
@bugbytes39232 жыл бұрын
Thank you. Yeah, a shopping cart type video with htmx + hyperscript is on the cards.
@NgazetungueMuheue2 жыл бұрын
@@bugbytes3923 Thanks!!!! i have been waiting for it. I am looking forward.
@GavinElie2 жыл бұрын
As usual your tutorial is very informative. Great job explaining some very interesting topics. I'm having an issue though getting the value from the trigger showMessage (return HttpResponse(status=204, headers={"HX-Trigger": json.dumps({"movieListChanged": None, "showMessage": f"{movie.title} updated.",})},)). The triggers works!! Any ideas getting the value of someMessage for a notification message using hyperscript?