|
|
Ccs.BusinessLogic.IGetDataRequest Parse (Object)
|
/* Reads and processes (parses) the filter.
@param P.L.Object The filter data
@param IGetDataRequest A new filter object */
|
|
|
Ccs.BusinessLogic.IQueryEntry ParsePredicate (JoinEnum, JsonObject)
|
|
|
|
Ccs.BusinessLogic.IQuerySortEntry ParseSortBy (Object)
|
/* Parses an SORT-BY phrase and returns an array of IQuerySortEntry objects.
http://docs.telerik.com/kendo-ui/api/javascript/data/datasource#configuration-sort
@param P.L.Object The SORT-BY data
@return IQuerySortEntry[] An array of sort phrases. An indeterminate array is returned if the input phrase is empty */
|
|
|
Ccs.BusinessLogic.IGetDataTableRequest ParseTableRequest (character, JsonObject)
|
/* Reads a single table's request.
This method knows which properties in the input JSON are for the where clause, for the sort-by etc
@param character The table name to which this filter applies
@param JsonObject The input filter
@return IGetDataTableRequest A single table Get Request */
|
|
|
Ccs.BusinessLogic.IQueryEntry ParseWhere (Object)
|
/* Parses where/filter phrase and returns an IQueryEntry object for a single table
http://docs.telerik.com/kendo-ui/api/javascript/data/datasource#configuration-filter
@param P.L.Object The filter/where clause data
@return IQueryEntry The query entry. We return one of an IQueryPredicate (single clause)
or an IQueryGroup (many clauses) */
|
|
|
Ccs.BusinessLogic.IQueryEntry ParseWhere (QueryGroup, JsonObject)
|
|