[]
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)
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)
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 specified x data field name and a data source.
public TBuilder Bind(string xDataFieldName, IEnumerable<T> sourceCollection)
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)
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 |