How to install collective.autoresizetextarea
- Download and install ActivePython
- Open Command Prompt
- Type
pypm install collective.autoresizetextarea
Lastest release
Introduction
collective.autoresizetextarea is a textarea auto-resizer for Plone. It is based on James Padolsey's jQuery autoResize plugin. Check his website for a demo.
Buildout Installation
Add the following code to your buildout.cfg:
[buildout]
... eggs = ... collective.autoresizetextarea ...
... [instance] ... zcml = ... collective.autoresizetextarea ...
Usage
To add the auto-resize feature to a textarea you can either add an "autoresize" CSS class to the textarea:
<textarea class="autoresize" />
or change the jQuery selector in the second line of the javascripts/autoresize.js file:
...
jq('textarea.mycssclass').autoResize({ ... ...
Consult the jQuery documentation for more about jQuery selectors.
Changelog
1.0b2 2010-07-13
- Metadata added to GS
[timo]
- HISTORY.txt moved to CHANGES.txt
[timo]
1.0b1 2010-02-05
- z3c.autoinclude added.
[timo]
1.0a1 2009-09-24
- Initial release.
[timo]