@@ -43,9 +43,9 @@ Filter criteria is defined in the follwing ways:
4343 filter_criteria: {
4444 country: ['#country_list input:checkbox .EVENT.click .SELECT.:checked', 'country_id'],
4545 age: ['#age_list input:checkbox .EVENT.click .SELECT.:checked .TYPE.range', 'age'],
46- states: ['#state_list input:checkbox .EVENT.click .SELECT.:checked', 'states.ARRAY.state_id'],
46+ states: ['#state_list input:checkbox .EVENT.click .SELECT.:checked', 'states.ARRAY.state_id']
4747 },
48- callbacks = filter_callbacks, //Define below.
48+ callbacks: filter_callbacks, //Define below.
4949 and_filter_on: false,
5050 search: { input: '#searchbox' },
5151 filter_types: filter_type_functions //Define below
@@ -227,14 +227,14 @@ Add default search option in filter setting.
227227
228228 search: {input: '#searchbox'}
229229
230- Custome search for particular fields.
231- Custome search config for above html template 'a' tag(filtering item), if we want to search by only 'name' and 'age'
230+ Custom search for particular fields.
231+ Custom search config for above html template 'a' tag(filtering item), if we want to search by only 'name' and 'age'
232232
233233'field_selector' is html element selector inside the item html.
234234
235235 search: {input: '#searchbox', field_selector: '.name, .age' }
236236
237- Custome Filter Types
237+ Custom Filter Types
238238--------------------
239239
240240Default filter are only equalto and range.If you want to add custom filter type like age-range, date-range.
0 commit comments