-
Notifications
You must be signed in to change notification settings - Fork 20
Earlier versions of OData (prior to v4), have used $inlinecount parameter for retrieving the total result count, while v4 uses $count parameter instead. If you get this error, you have specified the wrong version of OData service in "iODataVersion" parameter.
OData connector cannot perform text search against the date and numeric columns if a table is in the server-side processing mode. OData service does not provide some useful method for casting date and integer properties to string in order to enable text search. If you need to search by these columns, you can switch from server-side processing to Ajax source load mode.
Check whether some of the properties are defined as date or int (at OData service side). If they are, target columns in dataTable MUST have adequate value for "sType" parameter (either 'date' or 'numeric') in order to prevent connector to search by these columns.