Introduction"

From Documentation
Line 7: Line 7:
 
= Overview =
 
= Overview =
  
ZK Spreadsheet is an AJAX component that delivers Excel-like experience for you Java web application. Spreadsheet has grid-like user interface composed with cells, you can edit, merge, change styles on cells.
+
ZK Spreadsheet is an AJAX component that delivers Excel-like experience for you Java web application. It has grid-like user interface with toolbar, formula bar, and sheet bar and it provides those necessary feature such as editing text and styles, merging, sorting cells and even inserting, deleting, and freezing rows and columns.  
  
 
Being able to import and export Excel files are just the minimum. Unlike other online spreadsheet such as Google Docs or Microsoft 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 make cells reference to the backend Java beans, so any changes on the backend data can automatically reflect on ZK Spreadsheet. You can create your own customized formulas in Java and use them in the spreadsheet like other built-in formulas. You can even create by yourselves an online spreadsheet service with ZK Spreadsheet component.
 
Being able to import and export Excel files are just the minimum. Unlike other online spreadsheet such as Google Docs or Microsoft 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 make cells reference to the backend Java beans, so any changes on the backend data can automatically reflect on ZK Spreadsheet. You can create your own customized formulas in Java and use them in the spreadsheet like other built-in formulas. You can even create by yourselves an online spreadsheet service with ZK Spreadsheet component.

Revision as of 06:48, 15 July 2013



Overview

ZK Spreadsheet is an AJAX component that delivers Excel-like experience for you Java web application. It has grid-like user interface with toolbar, formula bar, and sheet bar and it provides those necessary feature such as editing text and styles, merging, sorting cells and even inserting, deleting, and freezing rows and columns.

Being able to import and export Excel files are just the minimum. Unlike other online spreadsheet such as Google Docs or Microsoft 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 make cells reference to the backend Java beans, so any changes on the backend data can automatically reflect on ZK Spreadsheet. You can create your own customized formulas in Java and use them in the spreadsheet like other built-in formulas. You can even create by yourselves an online spreadsheet service with ZK Spreadsheet component.

ZK Spreadsheet is an extensible, customizable, and integrable 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, the book data model, and the formula evaluation engine. The UI is a grid like widget that you can in-place edit the content of each cell. The data model stores the actual spreadsheet data. The formula evaluation engine is responsible for formula parsing and calculations.


Using in JSP & JSF

You can also use Spreadsheet as a component within JSP and JSF.


Difference from 2.5.0

In 3.0.0, we simplify Spreadsheet APIs for accessing books, sheets, and cells, e.g. Book, and Range. They are all under org.zkoss.zss.api.* and we encourage you to use them.

The Next

Maybe you would like to take a look at Spreadsheet demo or get Spreadsheet running at your local site and configure as you want.


Example Source Code

The complete source code of this book can be accessed from [http:// ]. The file for download is a zip file which contains a maven project, and there are several Excel files under /src/main/webapp/WEB-INF/books/ of the project.