Cloud Business App Edition > Wijmo Control Extensions > Controls > FlexGrid |
FlexGrid provides a powerful and flexible way to display data from a datasource in tabular format. A user can simply select a screen template to create a FlexGrid that allows scrolling, editing and paging without having to code manually. Also, FlexGrid provides design flexibility with cell level customization. This allows developers to create complex grid-based applications, and edit and update data bound to database.
Isml.js |
Copy Code
|
---|---|
myapp.GridConditionalImages.FlexGrid_render = function (element, contentItem) { var grid = new c1.cba.FlexGrid($(element), contentItem); var collectionView = new c1.cba.LightSwitchCollectionView(contentItem); grid.wjControl.itemsSource = collectionView; }; |