Completed
Last Updated: 27 Feb 2015 21:27 by ADMIN
Marien
Created on: 23 Feb 2012 16:04
Category: Kendo UI for jQuery
Type: Feature Request
1
Bug in normalizeFilter()
There is a bug in the normalizeFilter function.

expression = {
                    logic: "and",
                    filters: isArray(expression) ? expression : [expression]
                }

The logic option is hardcoded, so it won't use the value you submit using the datasource.query() function.

Example:
dataSource.query(
{
    logic: "or",
    filter: [
       { field: "indicator", operator: "contains", value: '0.a' },
	{ field: "indicator", operator: "contains", value: '1.a' }
    ]
} 
)
1 comment
ADMIN
Brandon
Posted on: 14 Jun 2013 18:07
fixed