New to Telerik UI for ASP.NET MVC? Download free 30-day trial

CustomDataSourceModelFieldDescriptorBuilder

Methods

From(System.String)

Specifies the field of the original record which value to be used for population of the Model field.

Parameters

fromField - System.String

The field of the original record which value to be used

Parse(System.String)

Specifies the handler which will parse the field value. If not set default parsers will be used.

Parameters

handler - System.String

The handler

Parse(System.Func)

Specifies the handler which will parse the field value. If not set default parsers will be used.

Parameters

handler - System.Func<Object,Object>

DefaultValue(Kendo.Mvc.UI.Fluent.T)

Parameters

value - T

DefaultValue(System.Object)

Sets the value which will be used to populate the field when new non-existing model is created.

Parameters

value - System.Object

The value

Editable()

Specifies if the field should be editable.

Example


            .DataSource(dataSource => dataSource
                    .Ajax()
                    .Model(m => m.Field(f => f.ShipName).Editable())
            )

Editable(System.Boolean)

Specifies if the field should be editable.

Parameters

enabled - System.Boolean

True is the field should be editable, otherwise false

Example


            .DataSource(dataSource => dataSource
                    .Ajax()
                    .Model(m => m.Field(f => f.ShipName).Editable(false))
            )

In this article
Not finding the help you need?