Setting Up ZK Spreadsheet
This article is out of date, please refer to http://books.zkoss.org/wiki/ZK_Spreadsheet_Essentials for more up to date information.
Follow the simple setups below to start using ZK Spreadsheet.
Purpose
Start using ZK Spreadsheet!
Prerequisites
Installing the Libraries
The setup procedure depends on your choice of IDE. The most important part is to include both ZK Spreadsheet and ZK’s JAR files in your project. The project should be a ZK Project or a dynamic Web Application Project depending on the environment you are using.
The easiest way to create a compatible project is to use ZK Studio and then include all the essential libraries. All libraries can be downloaded from the page [3], inside ZK Spreadsheet binary.
A Very Basic Application
Having completed setting up ZK and ZK Spreadsheet, we'll also need to prepare an Excel file as a source of the spreadsheet. We then create an index.zul file to contain the spreadsheet as shown in the code below:
<?xml version="1.0" encoding="UTF-8"?>
<zk xmlns="http://www.zkoss.org/2005/zul">
<spreadsheet src="/demo_sample.xls"
maxrows="200"
maxcolumns="40"
hflex="1"
vflex="1"></spreadsheet>
</zk>
Attributes
- src: The source file of the spreadsheet
- maxrows: The maximum number of columns of this spread sheet
- maxcolumns: The maximum number of rows of this spread sheet
- hflex and vflex: ZK's attribute, refer to ZK 5: More Flexible Layout
This gives us our very first ZK Spreadsheet application. When the code is started, navigate to index.zul and the following page should be displayed.
Congratulations! That is all it takes to embed ZK Spreadsheet within your ZK application.
Version History
Version | Date | Content |
---|---|---|
All source code listed in this book is at Github.