Ci-dessous, les différences entre deux révisions de la page.
| Prochaine révision | Révision précédente |
| info:dw:structureddata [2021/04/12 11:56] – créée radeff | info:dw:structureddata [2024/09/18 05:35] (Version actuelle) – radeff |
|---|
| ====== Structured Data Plugin ====== | ====== +++ Structured Data Plugin ====== |
| |
| |
| à coupler avec le [[info:dw:datatables|DataTables Plugin]] | à coupler avec le [[info:dw:datatables|DataTables Plugin]] |
| </note> | </note> |
| | |
| | ====== For filtering, multiple comparators are possible: ====== |
| | |
| | |
| | ^ Comparator ^ Meaning ^ |
| | | ''='' | Exact match | |
| | | ''!='' or ''<>'' | Does not exactly match | |
| | | ''<'' | Less than | |
| | | ''%%<=%%'' | Less than or equal to | |
| | | ''>'' | Greater than | |
| | | ''%%>=%%'' | Greater than or equal to | |
| | | ''~'' | Wildcard match. Use a ''*'' as wildcard. Like ''Apple*'' to match ''Apple Pie'' and ''Apple Computer''; e.g. ''dessert~ *Pie''. Case insensitive. | |
| | | ''*~'' | Wildcard match. Look for matches containing search term; e.g. ''dessert*~ Pi'' match ''Apple Pie'' | |
| | | ''!~'' | Negative Wildcard match. Select everything that does not match the expression. | |
| | | ''~~'' | Looks if contained in given comma separated list; e.g. ''dessert ~~ diner,dessert'' | |