Skip to main content
All docs
V25.2
  • ID
    Max
    Min

    SchedulerBuilder<T>.DataSource(String, String[]) Method

    Binds a Scheduler control to read-only data in JSON format.

    Namespace: DevExtreme.AspNet.Mvc.Builders

    Assembly: DevExtreme.AspNet.Core.dll

    Declaration

    public SchedulerBuilder<T> DataSource(
        string staticJsonUrl,
        params string[] key
    )

    Parameters

    Name Type Description
    staticJsonUrl String

    A JSON data URL.

    key String[]

    An array that contains one or more key field names.

    Returns

    Type Description
    SchedulerBuilder<T>

    A reference to this instance after the method is called.

    Remarks

    This method is a shorthand version of the DataSourceFactory.StaticJson() method. The following examples are equivalent:

    @(Html.DevExtreme().Scheduler()
        .DataSource("https://example.com/data.json", "ID")
    )
    
    @(Html.DevExtreme().Scheduler()
        .DataSource(ds => ds.StaticJson()
            .Url("https://example.com/data.json")
            .Key("ID")
        )
    )
    

    Refer to Read-Only Data in JSON Format for more information.

    See Also