Skip to main content

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

https://img.shields.io/pypi/v/django-charsleft-widget.svg https://img.shields.io/pypi/dm/django-charsleft-widget.svg https://img.shields.io/github/license/bashu/django-charsleft-widget.svg https://img.shields.io/travis/bashu/django-charsleft-widget.svg

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:

import django
if django.VERSION < (1,7):
    from charsleft_widget.fields import CharField
else:
    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

django-charsleft-widget-0.1.6.tar.gz (6.6 kB view details)

Uploaded Source

Built Distribution

django_charsleft_widget-0.1.6-py2.py3-none-any.whl (10.9 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-charsleft-widget-0.1.6.tar.gz.

File metadata

File hashes

Hashes for django-charsleft-widget-0.1.6.tar.gz
Algorithm Hash digest
SHA256 d624d0d2e5010bc8baf7f968a87e77f8a603ebef41c7e9299eedeff97c274d2b
MD5 25115d4965ce623502f4357be1e677f1
BLAKE2b-256 645e0ef1d5e7e8b7666f57325b15bc7dea1980efc7a3ebbe131f3b0d520cff2a

See more details on using hashes here.

File details

Details for the file django_charsleft_widget-0.1.6-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for django_charsleft_widget-0.1.6-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 947439657a241cdd8e041ea460bbbd95f5b10884acf1b9af5c167ffe51a3c927
MD5 91b2ccada756f7bddc05889e4690e0ce
BLAKE2b-256 51497219bff93dd28e91c7d47a1a507c50f742bba359d077929b9e815b9b52f7

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page