PivotDataSourceTransportSettingsTagHelper
Example
Razor
<transport>
<connection></connection>
<read />
</transport>
ChildTags
| Tag Name | Details |
|---|---|
| connection | PivotDataSourceTransportConnectionTagHelper |
| read | PivotDataSourceTransportReadSettingsTagHelper |
Attributes
| Attribute | Type | Description |
|---|---|---|
| cache | Boolean | Specifies the transport cache. |
| case-sensitive-filter | Boolean | If set to true the filter operators will be case sensitive (where supported by the server). |
| connection | PivotDataSourceTransportConnectionTagHelper | Sets the connection configuration for the pivot data source transport. |
| discover | String | Sets the discover configuration for the pivot data source transport. |
| discover-handler | String | Sets the discover handler for the pivot data source transport. |
| parameter-map | String | The function which converts the request parameters to a format suitable for the remote service. By default, the data source sends the parameters using jQuery's conventions.If a transport.read.data function is used together with parameterMap, do not forget to preserve the result from the data function that will be received in the parameterMap arguments. An example is provided below. Generally, the parameterMap function is designed to transform the request payload, not add new parameters to it. |
| read | PivotDataSourceTransportReadSettingsTagHelper | Sets the read configuration for the pivot data source transport. |
| read-url | String | Sets the read URL for the pivot data source transport. |
| submit | String | A function that will handle create, update and delete operations in a single batch when custom transport is used, i.e. the transport.read is defined as a function.The transport.create, transport.update and transport.delete operations will not be executed in this case. |