Package com.smartgwt.client.docs.serverds
package com.smartgwt.client.docs.serverds
This package is reference for all properties that may be specified in DataSource descriptor
 (.ds.xml file).  Do not import this package in your Java code - it is informational only.
Each Java Class here represents an XML element, and each field is a setting that can be specified as either an attribute or a subelement.
For example, DataSource.canMultiSort can be set like this:
<DataSource canMultiSort="true"/>
<DataSource>
    <canMultiSort>true</canMultiSort>
</DataSource>
<DataSource>
    <operationBindings>
        <operationBinding operationType="fetch">
            ... various operationBinding settings ...
        </operationBinding>
    </operationBindings>
</DataSource>
<DataSource>
    <operationBindings>
        <operationBinding operationType="add">
            <mail to="admin@company.com" templateFile="messageTemplate.txt"/>
        </operationBinding>
    </operationBindings>
</DataSource>
 DataSource files and other Component XML files can be localized using resource bundles - 
 see this overview for details.
- 
ClassesClassDescriptionAdvancedCriteria is a format for representing search criteria which may include operators on field values such as "less than", or may include sub-clauses such as several criteria applied to fields joined by an "OR" operator.A specialized subclass ofDSRequestthat you use to declare the properties of a subquery (afieldQueryorvalueQuery) to be used inAdvancedCriteria.An object representing a criterion to apply to a record.A DataSource is data-provider-independent description of a set of objects that will be loaded, edited and saved within the user interface of your application.Metadata about a DataSourceField, including its type and validators.An object that modifies a dsRequest based on several available values, including preceding responses from the same queue.AMailobject describes an email that will be sent automatically by the Smart GWT Server as part of a normalDataSourceoperation.An operationBinding tells a DataSource how to execute one of the basic DS operations: fetch, add, update, remove.Specification of an operator for use in filtering, for example "equals".Authentication settings, applicable only to theRestConnectorThe ServerObject tells the ISC server how to find or create a server-side object involved inDMI(Direct Method Invocation).An atomic type such as a string or number, that is generally stored, displayed and manipulated as a single value.A validator describes a check that should be performed on a value the user is trying to save.Defines the method of theServerObjectif it appears in anApplication declaration file.