Keikai Spreadsheet can also be embedded into a JSP page by using spreadsheet's custom tag to empower JSP with AJAX.
Spreadsheet JSP tag works much the same way as Keikai Spreadsheet ZUL component tag does within a ZK application with support for all the attributes and events.
<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@taglib prefix="kkjsp" uri="http://www.keikai.io/jsp/kk"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Hello ZSS JSP</title> <kkjsp:head/> </head> <body> <div style="height:100%"> <kkjsp:spreadsheet src="/WEB-INF/books/demo_sample.xlsx" width="100%" vflex="1" maxVisibleRows="100" maxVisibleColumns="40" showSheetbar="true" showSheetTabContextMenu="true" showToolbar="true" showFormulabar="true" showContextMenu="true"/> </div> </body> </html>