diff options
author | Robert Jaros <rjaros@finn.pl> | 2020-02-26 23:12:48 +0100 |
---|---|---|
committer | Robert Jaros <rjaros@finn.pl> | 2020-02-26 23:12:48 +0100 |
commit | 450d3d259cd3253f7cda8ab4baffb0a6d070d596 (patch) | |
tree | 25ff42e5e9e7d683ce5395fdd7159ed85244b1a3 /src/main/kotlin/pl/treksoft/kvision/form/check | |
parent | 94f36f212a60654571728a1f34701d95453efc22 (diff) | |
download | kvision-450d3d259cd3253f7cda8ab4baffb0a6d070d596.tar.gz kvision-450d3d259cd3253f7cda8ab4baffb0a6d070d596.tar.bz2 kvision-450d3d259cd3253f7cda8ab4baffb0a6d070d596.zip |
Major changes in the event handling architecture. Support for multiple event handlers.
Diffstat (limited to 'src/main/kotlin/pl/treksoft/kvision/form/check')
-rw-r--r-- | src/main/kotlin/pl/treksoft/kvision/form/check/CheckInput.kt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main/kotlin/pl/treksoft/kvision/form/check/CheckInput.kt b/src/main/kotlin/pl/treksoft/kvision/form/check/CheckInput.kt index b5c3ead0..f93fd436 100644 --- a/src/main/kotlin/pl/treksoft/kvision/form/check/CheckInput.kt +++ b/src/main/kotlin/pl/treksoft/kvision/form/check/CheckInput.kt @@ -26,7 +26,6 @@ import org.w3c.dom.events.MouseEvent import pl.treksoft.kvision.core.StringBoolPair import pl.treksoft.kvision.core.StringPair import pl.treksoft.kvision.core.Widget -import pl.treksoft.kvision.core.onEvent import pl.treksoft.kvision.form.FormInput import pl.treksoft.kvision.form.InputSize import pl.treksoft.kvision.form.ValidationStatus @@ -53,7 +52,7 @@ abstract class CheckInput( ) : Widget(classes), FormInput { init { - this.onEvent { + this.setInternalEventListener<CheckInput> { click = { val v = getElementJQuery()?.prop("checked") as Boolean? self.value = (v == true) |