Table of Contents
- Getting Started
- EO.Pdf
- EO.Web
- Overview
- Installation & Deployement
- EO.Web ToolTip
- EO.Web Rating
- EO.Web Slider & RangeSlider
- EO.Web ListBox
- EO.Web ComboBox
- EO.Web Captcha
- EO.Web ASPX To PDF
- EO.Web Slide
- EO.Web Flyout
- EO.Web EditableLabel
- EO.Web ImageZoom
- EO.Web Floater
- EO.Web Downloader
- EO.Web ColorPicker
- EO.Web HTML Editor
- EO.Web File Explorer
- EO.Web SpellChecker
- EO.Web Grid
- EO.Web MaskedEdit
- EO.Web Splitter
- EO.Web Menu
- EO.Web Slide Menu
- EO.Web TabStrip
- EO.Web TreeView
- EO.Web Calendar
- EO.Web Callback
- EO.Web MultiPage
- EO.Web Dialog
- EO.Web AJAXUploader
- EO.Web ProgressBar - Free!
- EO.Web ToolBar - Free!
- EO.WebBrowser
- EO.Wpf
- Common Topics
- Reference
Getting Started |
EO.Web Grid must be properly configured in order to function. The following list outlines all the steps, some of them are required:
- Place an EO.Web Grid on your page or user control;
- Apply appearance settings from one of the built-in template, or customize the appearance by yourself;
- Choose a running mode. The default running mode is Client Running Mode;
- This step is required. Define one or more columns. Unlike the standard ASP.NET DataGrid, EO.Web Grid does not automatically create columns based on the data source. Thus you must explicitly define all columns that you want to appear in your Grid;
- This step is required. Populate the Grid from a data source;
You may also want to enable paging and sorting on the Grid.
Once the Grid is displayed on the client side, users can edit grid data. After user finishes editing the data, the page is usually submitted by another control, for example, by clicking a "Save" button, at which time your server side code can inspect the changes and save the changes back to your data source. The following two important distinctions apply:
- User can make multiple changes, for example, modifying multiple cells before submitting;
- The change is usually submitted by another control (a "Save" button, for example). Like a simple textbox that allows the user to type and re-type the content without submitting, EO.Web Grid allows the user to modify cell values without submitting;