Changes between Version 44 and Version 45 of S3/FilterForms
- Timestamp:
- 04/02/13 09:46:15 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
S3/FilterForms
v44 v45 57 57 58 58 {{{#!python 59 instance = S3TextFilter(field, _class="class", _size=40, _name="name", comment=None)59 instance = S3TextFilter(field, label=None, _class="class", _size=40, _name="name", comment=None) 60 60 }}} 61 61 … … 64 64 ||'''Parameter'''||'''Type'''||'''Explanation'''||'''Default'''|| 65 65 ||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|| 67 67 ||_class||string||the CSS class for the input field||None|| 68 68 ||_size||integer||the input field width in characters||40|| 69 69 ||_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|| 70 71 71 72 Note: 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".