jQuery Bindings
The kvision-jquery
module allows you to work with jQuery library, with the help of a wrapper library jquery-kotlin.
jQuery object
You can use the io.kvision.jquery.jQuery
object to create a jQuery instance with all supported selector types. You can use them to directly access and modify underlying DOM elements and their attributes.
getElementJQuery() method
The extension function getElementJQuery()
can be used to access the jQuery instance bound to the underlying DOM element of the component. It gives you the possibility to easily access and modify the default behavior of KVision components.
There is also a getElementJQueryD()
method which returns a value of dynamic
type. It can be used to initialize and run code from external NodeJS modules and events to create custom KVision components.
Last updated