Hello,
first of all thanks for this amazing framework!
I just have one quick question, because I am using your ListView and I would like to search for more than one field. I was reading through your documentation and it seems like there are a few differences in between the Web API and the Mobile API.
This theoretically does not work, does it? Or am I doing anything wrong?
I would appreciate any further help!
Edit:
I know I could just use the operator and "contains" and put all the information in one string, but I was just wondering whether such thing was possible or not.
first of all thanks for this amazing framework!
I just have one quick question, because I am using your ListView and I would like to search for more than one field. I was reading through your documentation and it seems like there are a few differences in between the Web API and the Mobile API.
function viewInit(e) { e.view.element.find("#listView").kendoMobileListView({ dataSource: [ { id: 1, text: "foo" }, { id: 2, text: "bar" } ], template: "id: #: id# with text: #: text#", filterable: [ { ignoreCase: true, field: "text" }, { field: "id" } ] });}I would appreciate any further help!
Edit:
I know I could just use the operator and "contains" and put all the information in one string, but I was just wondering whether such thing was possible or not.