Custom widget that limits the number of characters that can be entered in a textarea field
Project description
django-charsleft-widget is a custom widget that adds a input clearing button on any input fields that are using it. It clears the value, and returns focus to that field.
Authored by Basil Shubin
Installation
pip install django-charsleft-widget
External dependencies
jQuery - this is not included in the package since it is expected that in most scenarios this would already be available.
Setup
Add charsleft_widget to INSTALLED_APPS:
INSTALLED_APPS += (
'charsleft_widget',
)
and just include charsleft_widget templates
{% include "charsleft_widget/charsleft_widget_css.html" %} {# Before the closing head tag #}
{% include "charsleft_widget/charsleft_widget_js.html" %} {# Before the closing body tag #}
When deploying on production server, don’t forget to run:
python manage.py collectstatic
Usage
All you need now is to import ClearableInput class and override field’s widget, for example:
from django.forms.fields import CharField
from charsleft_widget import CharsLeftArea
class Form(forms.Form):
field = CharField(max_length=128, widget=CharsLeftArea)
Please see example application. This application is used to manually test the functionalities of this package. This also serves as a good example.
You need only Django 1.4 or above to run that. It might run on older versions but that is not tested.
License
django-charsleft-widget is released under the BSD license.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-charsleft-widget-0.1.7.tar.gz
.
File metadata
- Download URL: django-charsleft-widget-0.1.7.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dc694d01e13a89e6b682a7524ebdfd54ccd4775f0dbc7fe1fd14d89db07bffd8 |
|
MD5 | fefadb12f4cc45d1a612b33c97847351 |
|
BLAKE2b-256 | 5759337c359ecce3ee4a2036f76889c32dcd94763e6005f9e9a0449cbf5dc61b |
File details
Details for the file django_charsleft_widget-0.1.7-py2.py3-none-any.whl
.
File metadata
- Download URL: django_charsleft_widget-0.1.7-py2.py3-none-any.whl
- Upload date:
- Size: 8.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1102419bff0bf433bbfd4be2042dab4e952c2b9b19c6c7f063f10cff6c75457c |
|
MD5 | 36ee204d7256fc0b709752c680e22172 |
|
BLAKE2b-256 | 13feab1406375391fe896e136853812f47e3ec82313e0448d3809e4139137eab |