Different layouts
DashboardLayout provides four types of layouts, namely Flow, AutoGrid, ManualGrid and Split. These layouts specify the arrangement of the tiles in different ways on the DashboardLayout control. Being able to choose layouts that fits screen requirements is the core feature of the control.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | using LearnMvcClient.Models; using System.Web.Mvc; namespace LearnMvcClient.Controllers { public partial class C1NavController : Controller { // GET: Adding public ActionResult DashboardLayouts() { return View(); } } } |
1 2 3 4 5 6 7 8 | @model DashboardData < h1 > @Html .Raw(Resources.C1Nav.DashboardLayouts_Title) </ h1 > < p > @Html .Raw(Resources.C1Nav.DashboardLayouts_Text1) </ p > |