Colorpicker widget for Plone
Project description
Introduction
collective.z3cform.colorpicker provides two different jQuery based widgets:
Farbtastic, a simple color picker.
jPicker, a jQuery Color Picker Plugin supporting transparency.
Requirements
plone >= 3.2.1
plone.app.z3cform
Installation
This addon can be installed has any other addons, please follow official documentation.
Usage
You can use this widget setting the “widgetFactory” property of a form field:
from zope import schema from z3c.form import form, field from collective.z3cform.colorpicker.colorpicker import ColorpickerFieldWidget from collective.z3cform.colorpicker.colorpickeralpha import ColorpickerAlphaFieldWidget class IColorForm(interface.Interface): color = schema.TextLine(title=u"Color", description=u"", required=False) alphacolor = schema.TextLine(title=u"Color with alpha layer support", description=u"", required=False) class Color(object): color = '#ff0000' alphacolor = 'ff0000cc' def __init__(self, context): self.context = context class ColorForm(form.Form): fields = field.Fields(IColorForm) fields['color'].widgetFactory = ColorpickerFieldWidget fields['alphacolor'].widgetFactory = ColorpickerAlphaFieldWidget ...
for more information see demo directory in the package sources.
Contributors
Giorgio Borelli - gborelli, Original Author
Silvio Tomatis - silviot
Changelog
1.3 (2015-10-05)
Remove from jpicker js file the bad chars from the begining [bloodbare]
Renamed txt files to rst, without symlinks. Symlinks can give installation problems, due to either the symlink or the original file missing from the distribution or being empty, because the link can end up the wrong way around. Fixes issue #1. [maurits]
1.2 (2015-05-02)
Updated classifiers list for package [macagua]
Added Spanish translation [macagua]
1.1 (2013-06-02)
fix MANIFEST.in [gborelli]
1.0 (2013-06-02)
add z3cform_colorpicker.js to initialize JPicker widget [gborelli]
add internationalization support [gborelli]
add css and javascript to Plone registry in order to make html valid [gborelli]
add profile to install colorpicker package [gborelli]
change some jpicker styles [gborelli]
update jpicker to v1.1.6 [gborelli]
egg layout refactoring [gborelli]
change Browser import from Testing.testbrowser [gborelli]
0.2 (2010-10-31)
include jPicker widget for alpha transparency support [gborelli]
0.1 (2009-06-19)
Initial release
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
Hashes for collective.z3cform.colorpicker-1.3.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | c421dead523b2e9fa5f2abf1a19d4fb0697590376ca9508f16c875bcded905c7 |
|
MD5 | e25821c496017869ffa99249944a0cda |
|
BLAKE2b-256 | be4caf04b7332bc50d88bbac13ba3292e23e516c85bffc5c19e6c7d47eeb80bf |