Reputation: 2603
Does anyone have an idea how to integrate JQuery UI with the ZK framework (ZKOSS)? I have tried to build a new component from the Maven archetype but it does not seem obvious to me.
Does anyone know a tutorial or can anyone give me some ideas? Thanks in advance.
Upvotes: 1
Views: 2638
Reputation: 2200
There are two ways to use JQuery UI widget in ZK
Wrap it as a ZK component. Use ZK client-side API to convert your JQuery UI Widget as a ZK component Widget. That way you can handle it on client side as well as on server side. Refer to this article for more details
Simply use it on the client-side with help of ZK client-side programming as described here
For more generic guidelines on using 3rd party Javascript libraries refer to this smalltalk
Upvotes: 3