Changes between Version 1 and Version 2 of collective.easyform
- Timestamp:
- Mar 13, 2014 1:24:17 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
collective.easyform
v1 v2 1 1 = collective.easyform = 2 3 [[PageOutline]] 4 5 [[Image(easyform-logo.png, nolink)]] 2 6 3 7 4 8 == Links == 5 9 6 * [http://plone.org/products/collective-easyform/releases Download releases from plone.org] 10 * [http://plone.org/products/collective-easyform/releases Download releases from plone.org] 11 * [https://pypi.python.org/pypi/collective Collective.Easyform project area on PyPi] 12 * [https://github.com/quintagroup/collective.easyform Code Repository on Github] 13 * [http://collectiveeasyform.readthedocs.org/en/latest Collective.Easyform Documentation] 14 * [https://travis-ci.org/quintagroup/collective.easyform Build status] [[Image(https://travis-ci.org/quintagroup/collective.easyform.png?branch=master)]] 7 15 8 * [https://pypi.python.org/pypi/collective Collective.Easyform project area on PyPi]9 16 10 * [https://github.com/quintagroup/collective.easyform Code Repository on Github] 11 12 * [http://collectiveeasyform.readthedocs.org/en/latest Collective.Easyform Documentation] 13 14 * [https://travis-ci.org/quintagroup/collective.easyform Build status] [[Image(https://travis-ci.org/quintagroup/collective.easyform.png?branch=master)]] 17 == Overview == 15 18 16 19 Collective.easyform enables creation of custom forms using dexterity. This Plone package is similar to Products.PloneFormGen that is based on Archetypes. Dexterity is a new platform for content types in Plone and will be used instead of Archetypes in Plone 5. Easyform provides a Plone form builder through-the-web using fields, widgets, actions and validators. … … 18 21 Similarly to PloneFormGen, Easyform is used to generate web forms that save or mail form input. Interface is simple and user-friendly to allow non-programmers create forms. 19 22 20 Install product, rerun your Plone instance and activate Collective.easyform. Add Easyform and fill out the fields. Further add and customize fields to create a unique form that will meet your particular requirements. 23 == Usage == 24 25 Install product, rerun your Plone instance and activate Collective.easyform. Create new custom form: 26 27 1. Add Easyform and fill out the fields. 28 29 [[Image(add-new-menu.png, nolink)]] 30 31 [[Image(new-easyform-default.png, nolink)]] 32 33 2. Further add and customize fields to create a unique form that will meet your particular requirements: 34 35 [[Image(created-easyform-fields.png, nolink)]] 21 36 22 37 With Collective.easyform you can add fieldsets and fields to the form. There are enough basic field types to satisfy any demands: 23 38 24 * File Upload 25 26 * Text line (String) 27 28 * Integer 29 30 * Yes/No 31 32 * Date 33 34 * Date/Time 35 36 * Floating-point number 37 38 * Choice 39 40 * Rich Text 41 42 * Image 43 44 * Multiple Choice 45 46 * Text 47 48 * Password 49 50 * ReСaptcha field 39 * File Upload 40 * Text line (String) 41 * Integer 42 * Yes/No 43 * Date 44 * Date/Time 45 * Floating-point number 46 * Choice 47 * Rich Text 48 * Image 49 * Multiple Choice 50 * Text 51 * Password 52 * ReСaptcha field 51 53 52 54 Available Actions: 53 55 54 * Mailer 56 * Mailer 57 * Save Data 58 * CustomScript 55 59 56 * Save Data 60 3. Use new form on Plone website: 57 61 58 * CustomScript 59 60 62 [[Image(created-easyform.png, nolink)]]