[]
Bind data with the url of the action which is used for reading data.
public TBuilder Bind(string readActionUrl)
Public Function Bind(readActionUrl As String) As TBuilder
| Type | Name | Description |
|---|---|---|
| string | readActionUrl | The url of the action which is used for reading data |
| Type | Description |
|---|---|
| TBuilder | Current builder |
Bind data with specified x data field name and the url of the action which is used for reading data.
public TBuilder Bind(string xDataFieldName, string readActionUrl)
Public Function Bind(xDataFieldName As String, readActionUrl As String) As TBuilder
| Type | Name | Description |
|---|---|---|
| string | xDataFieldName | Sets the name of the x data field. |
| string | readActionUrl | The url of the action which is used for reading data |
| Type | Description |
|---|---|
| TBuilder | Current builder |
Bind data with specified x data field name, value property and the url of the action which is used for reading data.
public TBuilder Bind(string xDataFieldName, string valueProperty, string readActionUrl)
Public Function Bind(xDataFieldName As String, valueProperty As String, readActionUrl As String) As TBuilder
| Type | Name | Description |
|---|---|---|
| string | xDataFieldName | Sets the name of the x data field. |
| string | valueProperty | Sets the name of the value data field. |
| string | readActionUrl | The url of the action which is used for reading data |
| Type | Description |
|---|---|
| TBuilder | Current builder |
Bind data with a data source.
public TBuilder Bind(IEnumerable<T> sourceCollection)
Public Function Bind(sourceCollection As IEnumerable(Of T)) As TBuilder
| Type | Name | Description |
|---|---|---|
| IEnumerable<T> | sourceCollection | The data source |
| Type | Description |
|---|---|
| TBuilder | Current builder |
Bind data with specified x data field name and a data source.
public TBuilder Bind(string xDataFieldName, IEnumerable<T> sourceCollection)
Public Function Bind(xDataFieldName As String, sourceCollection As IEnumerable(Of T)) As TBuilder
| Type | Name | Description |
|---|---|---|
| string | xDataFieldName | Sets the name of the x data field. |
| IEnumerable<T> | sourceCollection | The data source |
| Type | Description |
|---|---|
| TBuilder |
Bind data with specified x data field name and value property of the data source.
public TBuilder Bind(string xDataFieldName, string valueProperty, IEnumerable<T> sourceCollection)
Public Function Bind(xDataFieldName As String, valueProperty As String, sourceCollection As IEnumerable(Of T)) As TBuilder
| Type | Name | Description |
|---|---|---|
| string | xDataFieldName | Sets the name of the x data field. |
| string | valueProperty | Sets the name of the value data field. |
| IEnumerable<T> | sourceCollection | The data source |
| Type | Description |
|---|---|
| TBuilder | Current builder |