Introduction

From Documentation
Revision as of 10:41, 24 December 2010 by Ashishd (talk | contribs)




ZK Spreadsheet is an Ajax component that delivers the rich functionality of Excel as a Java Web application.

Being able to import and export Excel files are just the minimum. Unlike other on-line spreadsheet such as Google Docs or Office 2010 online suite, you can integrate ZK Spreadsheet with your enterprise back-end systems seamlessly and create collaborative and dynamic enterprise applications at minimal cost. You can call versatile Java APIs to control and configure the ZK Spreadsheet component(s). You can register event listeners so an action can be automatically triggered if any specified cell, range, or name changes. You can data bind cells to the back-end Java beans, so any changes on the back-end data would be automatically reflected on the ZK Spreadsheet. You can create your own customized spreadsheet functions in Java and use them in the spreadsheet formulas. You can even create by yourselves an online spreadsheet service with ZK Spreadsheet component.

ZK Spreadsheet is an extensible, customizable, and integratable Java Ajax Web spreadsheet solution, with both built in browser Ajax user interface and back-end server side Excel-like data and logic. No ActiveX or other plug-ins are required.

Architecture

Architecture-zss.png

ZK Spreadsheet component consist of three major parts -- the UI view part, the work book data model, and the formula evaluation engine. The UI part is a grid like component that you can in-place edit the contents of spreadsheet cells. The work book data model stores the actual spreadsheet data. The formula evaluation engine is responsible for spreadsheet formula parsing and calculations.

Loading a Work Book

  • ZK Spreadsheet UI component must work with a ZK Spreadsheet work book model. You can set book source URL to the UI component directly or prepare a work book model(e.g. by importing or by creating Book object) yourself and set the book to the UI component.
  • The ZK Spreadsheet UI will then populate itself with the work book data.

Note that one book can be associated with several ZK Spreadsheet UI components simultaneously. Data changes to the work book will be reflected to all associated ZK Spreadsheet UI components automatically.

Execution Flow of Serving a Cell Modification Request

  1. When an end user do some action such as input a new value into a cell on the browser side ZK spreadsheet widget, the widget would fire back to the server side ZK Spreadsheet UI component a ZK event to notify the change.
  2. ZK Spreadsheet UI component will then call the proper control APIs to change the workbook data model.
  3. The formula engine then take over to check the formula dependency and collect associated cells that need to be updated accordingly; then publish data change event to notify the ZK Spreadsheet UI component.
  4. Per the data change event published from the work book, the ZK Spreadsheet UI component update itself accordingly.
  5. The change will then be reflected back to the browser widget automatically by ZK Framework.

Note that the ZK Spreadsheet work book model is not limited to be used with ZK Spreadsheet UI component only. You can call the control APIs in your application to change the ZK Spreadsheet work book and the associated ZK Spreadsheet UI part will still be updated accordingly. Further more, you can even associate other ZK components to the work book's data change event queue and do something whenever the work book publish data change events.

Download Example Codes

Rest of the book goes into more details of ZK Spreadsheet. You can download all the example codes described later in this book as a web archive here. Deploy once and you can execute individual examples as and when you go through the book.

Version History

Last Update : 2010/12/24


Version Date Content
     

All source code listed in this book is at Github.


Last Update : 2010/12/24

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.