kotlinx.html icon indicating copy to clipboard operation
kotlinx.html copied to clipboard

Problem with checkboxes in kotlin-react caused by kotlinx.html

Open TorRanfelt opened this issue 6 years ago • 1 comments
trafficstars

Apparently kotlinx.html currently doesn't allow JetBrain's react-wrapper to function properly https://github.com/JetBrains/kotlin-wrappers/issues/35

TorRanfelt avatar Feb 28 '19 08:02 TorRanfelt

This seems to be related to the "checked" property.

This code throws an exception:

    input(type = InputType.checkBox) {
      attrs {
        checked = true
        println("checked: $checked")
      }
    }

I assume the "checked" property does not yet exist

jschneider avatar Aug 31 '22 11:08 jschneider