Lines 1334-1339
function update_search_description(
Link Here
|
1334 |
* Supports `contains`, `starts_with`, `ends_with` and `exact` match |
1334 |
* Supports `contains`, `starts_with`, `ends_with` and `exact` match |
1335 |
* @param {string} [options.columns.*.type Data type the field is stored in so we may impose some additional |
1335 |
* @param {string} [options.columns.*.type Data type the field is stored in so we may impose some additional |
1336 |
* manipulation to search strings. Supported types are currenlty 'date' |
1336 |
* manipulation to search strings. Supported types are currenlty 'date' |
|
|
1337 |
* @param {string} [options.columns.*.datatype Data type the field is stored in so we may impose some additional |
1338 |
* manipulation logic to search. Supported types are currently 'related-object', |
1339 |
* for implimenting joins in api search queries, and 'coded_value:TABLE' to allow |
1340 |
* for clientside translations of description to code to reduce join requirements. |
1341 |
* See bug 39011 for an example implimentation. |
1337 |
* @param {Object} table_settings The arrayref as returned by TableSettings.GetTableSettings function |
1342 |
* @param {Object} table_settings The arrayref as returned by TableSettings.GetTableSettings function |
1338 |
* available from the columns_settings template toolkit include |
1343 |
* available from the columns_settings template toolkit include |
1339 |
* @param {Boolean} add_filters Add a filters row as the top row of the table |
1344 |
* @param {Boolean} add_filters Add a filters row as the top row of the table |
1340 |
- |
|
|