Metadata-Version: 1.1
Name: Products.PFGMasterSelect
Version: 0.2
Summary: Plone Formgen Fields using Master Select Widgets
Home-page: https://github.com/bpoettinger/Products.PFGMasterSelect
Author: Bernhard Pöttinger
Author-email: bernhard.poettinger@tngtech.com
License: GPL
Description: Products.PFGMasterSelect
        ========================
        
        .. contents::
        
        An add-on field for PloneFormGen using the MasterSelect widget.
        
        Features
        --------
        
        Installation
        ------------
        
        How to use
        ----------
        Please note that PloneFormGen's QuickEdit mode does not work (yet) for this add-on.
        
        After installing this product you can create the Master Select
        and Master Multiselect fields via the "Add new..." menu in a PloneFormGen form.
        Both fields allow you to specify a default value and the options available as the
        common selection field does.
        
        Additionally it provides a configuration table that contains the MasterSelect
        configuration (see also MasterSelectWidget documentation for more detail):
        
        ``name`` (required)
            The target field's name
        ``action`` (required)
            The action to be applied on the target field. The options are
            * show/enable: Show/Enable the target field only if toggle_method evaluates to True or the field's value is in hide_value
            * hide/disable: Hide/disable the target field if toggle_method evaluates to True or the field's value is in hide_values
            * value: Set the target field's value to the result of the vocab_method
            * vocabulary: Set the target field's vocabulary to the result of the vocab_method
        ``vocab_method``
            A python expression evaluating to a single value or collection. The currently set value (MasterSelect) or
            values (MasterMultiSelect) are available via ``value`` and ``values`` respectively.
            Example: Set the vocabulary of a selection field using ``['xyz' + v for v in values]``
        ``toggle_method``
            A python expression evaluating to a boolean value. This method takes precedence to hide_values. The currently set
            value (MasterSelect) or values (MasterMultiSelect) are available via ``value`` and ``values`` respectively.
            Example: Hide a field if the selected value has length 5 or equals ``foo`` using ``len(value) == 5 or value == 'foo'``
        ``hide_values``
            The values that show/hide/enable/disable operate on
            Example: Hide a field if the selected value is ``a`` or ``b`` using ``a,b``
        
        Change history
        **************
        
        Changelog
        =========
        
        0.2 (2017-05-19)
        ----------------
        
        - Fix bug related to Datagridfield providing empty rows
        - Fix type confusion after roundtrip by forcing every value to type string
        - Use plain string comparison for hide_values instead of python expressions evaluating to a value or a collection
        - Refine the slave fields widget descriptions regarding the method fields
        - Replace eval by Plone's tales expressions
        - Add documentation
        
        0.1 (2017-03)
        ----------------
        
        - Proof of concept
        
        Contributors
        ************
        
        "", Author
        
        
        Download
        ********
        
Keywords: Plone PloneFormGen MasterSelectWidget
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Plone
Classifier: Framework :: Plone :: 4.3
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
