☕ Buy a coffee: ko-fi.com/bugbytes ⭐Top resource to learn Python - datacamp.pxf.io/kOjKkV ⭐
@aafan.kuware20 күн бұрын
appreciating your work isn't just enough.
@bugbytes392319 күн бұрын
Thanks a lot Aafan!
@aafan.kuware11 күн бұрын
@bugbytes3923 can you assist on django textfield, making it rich text editor, I used CkEditor5 and creates tables but that tables are overflowing on mobile device, tried customizing it but failed.
@zb945819 күн бұрын
Thank you Lyle!! Your videos on HTMX and Django are amazing
@bugbytes392319 күн бұрын
Cheers! Glad you like them!
@Kabuki4719 күн бұрын
Thanks a lot for the explanation of the new HTMX's technique, sir!
@bugbytes392319 күн бұрын
No problem - thanks for watching!
@AmoahDevLabs19 күн бұрын
Amazing gist. Thanks for sharing.
@bugbytes392319 күн бұрын
Thanks mate!
@repotranstech20 күн бұрын
cool video as always
@bugbytes392319 күн бұрын
Thanks for watching!
@NilotpaulNandi20 күн бұрын
Great vid, thanks man 👍
@bugbytes392319 күн бұрын
Cheers man!
@hakanbilgin687517 күн бұрын
Thank you for video
@bugbytes392314 күн бұрын
Thanks mate!
@seadude20 күн бұрын
So solid. Always clear as a bell. Thank you. Do you have a Django From Scratch series? Ideally, creating a CRUD app template. That would be awesome.
@bugbytes392319 күн бұрын
Thanks! I have some content that's in preparation for Django from Scratch, but I haven't worked on it for a while. I definitely want to do an intro-level course on Django in the future, though.
@seadude15 күн бұрын
@ Awesome, yeah, I’d pay for that! I’m tired of messing with streamlit when wanting to stay in the Python framework for the entire front/backend stack. I’m proficient in Serverless mid/backend but fairly clueless in best practices for PROD Frontends. Let me know how I can assist (serious).
@AdnanNazirAhmed12 күн бұрын
Thanks, very useful.
@bugbytes392311 күн бұрын
Thanks a lot Adnan!
@MagnusAnand20 күн бұрын
💪💪
@bugbytes392319 күн бұрын
Thanks a lot!
@frameff907320 күн бұрын
thank you
@bugbytes392319 күн бұрын
Thank you for watching!
@plurallyplurally794815 күн бұрын
How do you handle complex frontend state in HTMX? Do you have a video on that?
@djangodeveloper0719 күн бұрын
great video, but for delete an item, no confirmation box ? i don't think so it's a good practice to allow users to delete items on a single click without any warning ? does htmx provide any attribute for that ? second can we add loading/spinner like Deleting..... because on live sites, query can take 1 or 2 seconds to execute.
@bugbytes392319 күн бұрын
Good point, it's not shown in the video but you can use "hx-confirm" for confirming the delete on the browser. Spinners can also be added - check out the hx-indicator attribute for that.
@kennyPAGC12 күн бұрын
I'm not sure what's the point of the hx trigger header here (which btw I don't agree with this design because I lean for a more clear backend and frontend separation) since it could all be done with the response status code.
@JunHou-u4j17 күн бұрын
why are you so cool man
@bugbytes392314 күн бұрын
Haha not sure about that... :D Thanks though
@noob_coder00120 күн бұрын
Please make a video working with htmx and using datatables library . In addition use hx-boost="true" with the datatable elements for tag its not working at the same time i got an duplicate datatable wrapper issue . 🥺 Please resolve my issuce man ,. Thanks in advance .
@codedjango20 күн бұрын
In SPA's removing any element from the frontend before the server response is received may cause side-effects if its existence triggers any other event on the frontend...so I think "optimistic updates" are a big "NO" ....I think spinner would give an appropriate message to the user and also not add to the errors in the frontend...but thanks to showcase the optimistic updates anyways..
@legion_prex365020 күн бұрын
not a big fan either to be honest.
@Jack-l8d7s19 күн бұрын
It’s just about use case. It’s pretty obvious that if an action triggers another event this probably isn’t the right option but for straightforward operations this is great!