django – Mask with jquery
Questions: I applied a money format mask and did not accept the first digit to be 0. However, the following characters are still accepted “e, -, + ,.” obs:field is decimal.The mask works b...
Questions: I applied a money format mask and did not accept the first digit to be 0. However, the following characters are still accepted “e, -, + ,.” obs:field is decimal.The mask works b...
Questions: Closed. This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this p...
Questions: I want to dynamically load the table to my html page after ajax form submit. Below is my view definition def patients_create(request): data = dict() if request.method == 'POST': form = Pati...
Questions: I have created a site with django as a multi page application and everything was working smoothly until the company asked my to integrate a player for the radio station they own. I created ...
Questions: I am trying to set a link which will download an empty folder upon clicking. Is there any way (javascript/ jQuery) to do it in Django? In several tutorials, they zipped the folder and then ...
Questions: I have a Django Model that represents data about Countries that looks something like this: class Country(Model): name = TextField(unique=True) code = TextField(...) latitude = DecimalField(...
Questions: I’ve been browsing the documentation but can’t find it anywhere. Is it possible to set the TTL for the access and refresh tokens in Django Rest Framework? Answers: More Answers&...
Questions: Good day, I’m pretty new in django and python and newer still in javascript. And I’m mixing everyone! 🙁 Step to tell you that I’m making a website where a Manager enters t...
Questions: I’m trying to integrate Angular and Django and I am encountering a problem when I point to the index.html in the angular folder. My url pattern in djangoapp.urls.py is: urlpatterns = ...
Questions: i have create a django app with REST JSON API and i fill html table in web page from my JSON. here some examples javascript snippets : var field22=document.getElementById('f22'); field22.in...