ASP.NET Core MVC Controls | ComponentOne
Working with Controls / FlexSheet / Work with FlexSheet / Data Binding
In This Topic
    Data Binding
    In This Topic

    FlexSheet supports model binding and remote data binding where you can retrieve data directly using C1JsonRequest. In the bound mode, columns can be defined and FlexSheet is bound to a data source just like FlexGrid.

    In remote binding, your sheet is bound to a collection by passing Action URL method, using Bind property. Remote data binding specifies remote data URLs, which include server, table and columns. The returned arrays serve as data sources for CollectionView objects. The CollectionViewHelper class aids collections to have editing, filtering, grouping, and sorting services.

    This topic demonstrates how to retrieve data from an existing data source. This is useful for developing data-intensive applications and scenarios for representing data as dashboards.

    The following image shows how the FlexSheet appears in bound mode to fetch data from the model Sale.cs.

     

    The following code examples demonstrate how to bind FlexSheet to fetch data from remote data source:

    Add a Sale.cs class to the Models folder.

    Model

    Sale.cs
    Copy Code
    public class Sale
    {
        public int ID { get; set; }
        public DateTime Date { get; set; }
        public string Country { get; set; }
        public string Product { get; set; }
        public double Amount { get; set; }
        public bool Active { get; set; }
    
        private static List<string> COUNTRIES = new List<string> { "US", "Germany", "UK", "Japan", "Italy", "Greece" };
        private static List<string> PRODUCTS = new List<string> { "Widget", "Gadget", "Doohickey" };
    
        /// <summary>
        /// Get the data.
        /// </summary>
        /// <param name="total"></param>
        /// <returns></returns>
        public static IEnumerable<Sale> GetData(int total)
        {
            var rand = new Random(0);
            var list = Enumerable.Range(0, total).Select(i =>
            {
                var country = COUNTRIES[rand.Next(0, COUNTRIES.Count - 1)];
                var product = PRODUCTS[rand.Next(0, PRODUCTS.Count - 1)];
                var date = new DateTime(2015, i % 12 + 1, 25);
    
                return new Sale
                {
                    ID = i + 1,
                    Date = date,
                    Country = country,
                    Product = product,
                    Amount = Math.Round(rand.NextDouble() * 10000 - 5000, 2),
                    Active = (i % 4 == 0)
                };
            });
            return list;
        }
    
        public static List<string> GetCountries()
        {
            var countries = new List<string>();
            countries.AddRange(COUNTRIES);
            return countries;
        }
    
        public static List<string> GetProducts()
        {
            List<string> products = new List<string>();
            products.AddRange(PRODUCTS);
            return products;
        }
    }
    

    DataBindingController.cs

    C#
    Copy Code
    public class DataBindingController : Controller
    {
        public static List<Sale> SALES = Sale.GetData(50).ToList();
    
        public ActionResult RemoteBind([C1JsonRequest] CollectionViewRequest<Sale> requestData)
        {
            return this.C1Json(CollectionViewHelper.Read(requestData, Sale.GetData(50)));
        }
    
        public ActionResult Index()
        {
            return View(SALES);
        }
    }
    

    DataBinding.cshtml

    HTML
    Copy Code
    @using MVCFlexSheet.Models;
    @model IEnumerable<Sale>
    
    <div>
        <c1-flex-sheet class="flexSheet" height="700px" width="700px">
            <c1-bound-sheet>
                <c1-items-source read-action-url="@Url.Action("RemoteBind")">
                </c1-items-source>
            </c1-bound-sheet>
        </c1-flex-sheet>
    </div>
    

    Back to Top

    Local Model Binding in FlexSheet

    Data Binding in FlexSheet can also be accomplished by passing a model locally in Bind property, unlike remote binding where a URL is passed.

    The following code examples demonstrate how to bind FlexSheet control to fetch data from local data source:

    In Code

    Create a Sale.cs model class in the Models folder, as discussed above.

    ModelBindingController.cs

    C#
    Copy Code
    public partial class ModelBindController : Controller
    {
        // GET: ModelBind
        public static List<Sale> SALES = Sale.GetData(15).ToList();
    
        public ActionResult ModelDBIndex()
        {
            return View(SALES);
        }
    }
    

    ModelBinding.cshtml

    HTML
    Copy Code
    @model IEnumerable<sale>
        <div>
            <c1-flex-sheet class="flexSheet" id="boundSheet">
                <c1-bound-sheet>
                    <c1-items-source source-collection="Model"></c1-items-source>
                </c1-bound-sheet>
            </c1-flex-sheet>
        </div>