Changes between Version 44 and Version 45 of S3/FilterForms


Ignore:
Timestamp:
04/02/13 09:46:15 (12 years ago)
Author:
Dominic König
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • S3/FilterForms

    v44 v45  
    5757
    5858{{{#!python
    59 instance = S3TextFilter(field, _class="class", _size=40, _name="name", comment=None)
     59instance = S3TextFilter(field, label=None, _class="class", _size=40, _name="name", comment=None)
    6060}}}
    6161
     
    6464  ||'''Parameter'''||'''Type'''||'''Explanation'''||'''Default'''||
    6565  ||field||string or list of strings||field selector (or a list of field selectors) for the field(s) to filter by ''(required)''||-||
    66   ||comment||string or HTML widget||help text or tooltip widget to render with the filter widget (only rendered by S3FilterForm)||None||
     66  ||label||string or lazyT||the label for the fitler widget||None||
    6767  ||_class||string||the CSS class for the input field||None||
    6868  ||_size||integer||the input field width in characters||40||
    6969  ||_name||string||name for the input field||None||
     70  ||comment||string or HTML widget||help text or tooltip widget to render with the filter widget (only rendered by S3FilterForm)||None||
    7071
    7172Note: if multiple strings are entered by the user, each of them (AND) must appear in any of the fields (OR) specified by the field selectors. All fields must be type "string" or "text".