Book Image

Ext.NET Web Application Development

By : Anup K Shah
Book Image

Ext.NET Web Application Development

By: Anup K Shah

Overview of this book

To build a rich internet application, you need to integrate a powerful client side JavaScript framework with a server side framework. Ext.NET achieves this by integrating Sencha's Ext JS framework with the power of ASP.NET. The result ñ a sophisticated framework offering a vast array of controls, layout, and powerful AJAX and server bindings, which can be used to build rich, highly usable web applications. "Ext.NET Web Application Development" shows you how to build rich applications using Ext.NET. Examples guide you through Ext.NET's various components using both ASP.NET Web Forms and MVC examples. You will also see how Ext.NET handles data binding and server integration. You will also learn how to create reusable components and put them together in great looking applications. This book guides you through the various Ext.NET components and capabilities to enable you to create highly usable Ext.NET components and web applications. You will learn about various UI components and numerous layout options through examples. You will see how the AJAX architecture enables you to create powerful data-oriented applications easily. This book will also teach you how to create reusable custom components to suit your needs. "Ext.NET Web Application Development" shows you how to create rich and usable applications using Ext.NET through numerous examples.
Table of Contents (17 chapters)
Ext.NET Web Application Development
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
8
Trees and Tabs with Ext.NET
Index

GridPanel – overview


Although Stores handle data access and persistence, and Models define the data, the GridPanel is responsible for bringing them together with column management and other grid-related features.

Essentially, a GridPanel is made of two main parts as follows:

  • A Store (and Model) to handle the data

  • Columns to render the data into

In addition, a GridPanel can be augmented with many more capabilities, for example:

  • A View, which handles rendering of each row. (By default, a GridPanel uses a View internally to render rows for you, but Ext.NET also exposes the View to be configured with more options if required)

  • Paging, filtering, sorting, grouping

  • Row expansion

  • Controlling how data values are formatted for display

  • Controlling how rows and cells might be selected

  • Numerous options for editing grids, inline or per row

  • A variety of ways to retrieve local or remote data by reusing the Store architecture described in Chapter 5, Working with Data, as well as using other data-bound controls, such...