Showing posts with label Integration. Show all posts
Showing posts with label Integration. Show all posts

Thursday, June 27, 2013

Integration of Rapid Spell Checker with ZK Framework

Today i am going to share how we can integrate Rapid Spell Checker with ZK Framework. As we all know ZK does not provide any default spell checker so we have to use some third party toll to fulfill this requirement.
As i read Rapid Spell Checker website they already mentioned its very easy to integrate this spell checker with JSP,JSF,Struts etc. so i thought why should not we can try to integrate it with ZK Framework ,it should work because if its working with JSF which is something similar with ZK Framework.
When i started their way to implement this in my ZK Web application i found some issue with IE browser but thanks to keyoti.com team member they helped me to resolve the issue.

What all you need to work with this tool please follow below...

1-Download Rapid Spell Checker evaluation version from here

2-Now extract the downloaded file and copy RapidSpellWeb.jar into your web project lib directory

3-Now download the dictionaries from here these dictionaries is nothing but a jar file copy all dictionaries jar file into your project lib directory.

4- Use below code to test this .



5-Also you have to create(under WebContent directory ) a folder userdictionaries and a file 1.txt inside this folder. This file will add all the words which not present in the your default dictionary.

If someone have more better option please share with me.

Friday, April 19, 2013

How to Integrate Groovy with ZK Web application.

s i m using Maven in my ZK Web application ..So i have to made these changes to run GroovyScript from my ZK WebApplication..
1- First i have to add this dependency in pom.xml file
2- Second thing i have to create a Groovy script file and added it into /src/main/resources folder.With Following Code.
3- Third and most important thing how to run above created Groovy Script code..as you know the above code returning List of String so we can use below code in my Java class.
This is Basic POC(Proof of Concept) and my first sample with Groovy...and Here Sample Code for Groovy Script..

Wednesday, October 17, 2012

Integrate Dyanmic Jasper Reprot with ZK

Before Starting please read my Last Post For Dynamic Jasper report you have add DynamicJasper-4.0.2.jar in class path .. 1-Java Code for Dynamic Jasper report.
I Used ZK Iframe Here So Slightly Change in the report.zul file This is a Demo code how can you use Dynamic Jasper report with ZK.