Metadata-Version: 1.0
Name: z3c.listjs
Version: 1.0a2
Summary: A formlib list widget that uses Javascript
Home-page: UNKNOWN
Author: Martijn Faassen
Author-email: faassen@startifact.com
License: ZPL 2.1
Description: z3c.listjs
        **********
        
        z3c.listjs contains a widget called ``ListJsWidget`` that is a drop-in
        replacement for the ``zope.app.form.browser.ListSequenceWidget``. It
        allows users to add and remove list items without the need for server
        interaction, using Javascript.
        
        Note: This package only works with ``zope.formlib``
        (``zope.app.form``) and is not compatible with ``z3c.form``.
        
        You can use ``ListJsWidget`` for any ``schema.List`` field using the
        normal ``zope.formlib`` custom widget pattern::
        
        from z3c.listjs import ListJsWidget
        
        ...
        
        form_fields['foo'].custom_widget = ListJsWidget
        
        With the right ZCML override it should also be possible to
        automatically use this widget in all cases ``ListSequenceWidget``
        would normally be used. Documentation contributions are welcome!
        
        Should you wish to override the CSS for the buttons, the CSS classes
        are ``up_button`` and ``down_button``. If you are using hurry.resource
        for your overriding CSS, your resource should depend on
        ``z3c.listjs.listjs_css`` so that ordering is correct to make the
        override happen.
        
        CHANGES
        *******
        
        1.0a2 (2009-01-23)
        ==================
        
        * Allow moving individual list items up and down in the list.
        
        1.0a1 (2009-01-08)
        ==================
        
        * Initial public release.
        
        Download
        ********
        
Keywords: zope3 form widget
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Programming Language :: Python
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Framework :: Zope3
