Component One ASP.Net MVC

ASP.Net MVC Multiple Controls Binding

This page shows how to bind one CollectionView to multiple controls.

Getting Started

Steps for getting started with the Multiple Controls Binding in MVC application:

  1. Create a CollectionViewService and set id for it.
  2. Create a FlexGrid control and set it's ItemsSourceId to the id of CollectionViewService.
  3. Create a FlexChart control and set it's ItemsSourceId to the id of CollectionViewService.

This will create a FlexGrid and a FlexChart and they will bind to the same CollectionView, so if we change the data of FlexGrid, we can see the data also changes in FlexChart.

FlexGrid :

FlexChart :