CLR Objects
- 3 minutes to read
You can bind DevExtreme ASP.NET MVC controls to a collection of CLR objects: Array
, List
, or IEnumerable
.
These collections …
- can come from a controller (via Model or ViewData);
- can be embedded in Razor files (directly in an HTML helper declaration or in a
@functions
block).
A collection is passed to the client as an ArrayStore. Note that collection data should be JSON-serializable.
Example: Bind a Control to an Array
The example code shows how to bind the Chart control to an array.
@(Html.DevExtreme().Chart()
.DataSource(new[] {
new { Day = "Monday", Oranges = 3 },
new { Day = "Tuesday", Oranges = 2 },
new { Day = "Wednesday", Oranges = 3 },
new { Day = "Thursday", Oranges = 4 },
new { Day = "Friday", Oranges = 6 },
new { Day = "Saturday", Oranges = 11 },
new { Day = "Sunday", Oranges = 4 }
})
)
Example: Bind a Control to a Model
The example code shows how to bind the MultiView control to Model
.
View
@model List<DevExtreme.MVC.Demos.Models.Store>
@(Html.DevExtreme().MultiView()
.DataSource(Model)
)
Model
namespace DevExtreme.MVC.Demos.Models.SampleData {
public partial class SampleData {
public static Store[] Stores = new[] {
new Store {
ID = 1,
CompanyName = "SuprMart",
Address = "702 SW 8th Street",
City = "Bentonville",
},
new Store {
ID = 2,
CompanyName = "El'Depot",
Address = "2455 Paces Ferry Road NW",
City = "Atlanta",
},
new Store {
ID = 3,
CompanyName = "K&S Music",
Address = "1000 Nicllet Mall",
City = "Minneapolis",
}
};
}
}
Controller
using DevExtreme.MVC.Demos.Models.SampleData;
namespace DevExtreme.MVC.Demos.Controllers {
public class MultiViewController : Controller {
public ActionResult Overview() {
return View(SampleData.Stores);
}
}
}
The DataSource
method overload accepts the string[] key
parameter, so your code can look as follows: