Script!
The Imixs Workflow Script! is the first platform that enables you to build business apps only with HTML and JavaScript!
'Imixs Workflow Script!' provides a JavaScipt workflow library for browser based workflow applications. 'Imixs Workflow Script!' combines the benefits of jQuery with the capabilities of the Imixs Workflow engine. With the help of 'Imixs Workflow Script!' any web application can extended easily with workflow functionality.
Imixs Workflow Script! is based on jQuery and interacts with the Imixs Workflow engine through a RESTful service api. To use this framework, you simply add the imixs.js and jQuery libraries into your html page....
<head> ... <script type="text/javascript" src="js/jquery-1.7.1.min.js"></script> <script type="text/javascript" src="js/imixs-0.0.1.js"></script> </head> ....
...with predefined sections, Imixs Workflow Script! detects automatically forms and view areas....
<div id="workitem_view">
<form action="rest/workflow/workitem?action=../index.html" method="post">
Subject: <input type="text" name="_subject" />
<!-- Workflow Actions -->
<div id="workitem_activities">
<input type="button" value="Cancel" onclick="clearWorkitem();" />
</div>
</form>
.....
</div>
.......
<div id="sidebar">
<ul id="worklist_view" />
</div>...and adds action buttons automatically into your form - depending on the process instance and workflow model.

Imixs Workflow Script! interacts with the Imixs Workflow engine through a RESTful web service. This service runs in the background and provides information about the process model and stores form data into a database.
You can download the latest version of Imixs Workflow Script! from the Imixs Donwload page. Please note that you also need to download jQuery from the jQuery Download page
To see a full example application just download the Imixs Script Sample application. This example provides a war file which can be deployed into any Java EE application server. Read details here