Ben Rhouma Zied
Ben Rhouma Zied

Reputation: 2603

Mixing ZK 6 and Jquery UI components?

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

Answers (1)

kachhalimbu
kachhalimbu

Reputation: 2200

There are two ways to use JQuery UI widget in ZK

  1. 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

  2. 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

Related Questions