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

Summary


In this chapter we had a look at how you might troubleshoot an Ext.NET application. On the server side, there is nothing special you have to do compared to normal; Visual Studio debugging for Ext.NET is as it would be for any other ASP.NET-based application.

On the client side, as we have to consider multiple browsers we looked at a number of options to help troubleshoot. We saw how Ext.NET provides the ability to load debug versions of their JavaScript and of Ext.NET for easier debugging. We also reviewed tools, such as the Console to analyse HTTP requests and format responses for easier reading.

Finally, we looked at how you can try to reproduce any problems you are having in a standalone solution to try and isolate the issue as much as possible from the rest of your code. We saw an additional advantage of this approach is that you can post this isolated code sample directly into the Ext.NET forums if you need further help and support from the Ext.NET team. This helps them see your...