Slackbot
06/07/2021, 11:07 PMHywel Bennett
06/07/2021, 11:07 PMprotected open fun childrenVNodes(): Array<VNode> {
return (privateChildren + children).filter { it.visible }.map { it.renderVNode() }.toTypedArray()
}
So I can't put a link, for example, below text inputs to direct the user to help etc, as that will not be rendered in-place, but rather at the end of the form panelRobert Jaros
06/08/2021, 7:14 AMHywel Bennett
06/08/2021, 7:29 AMRobert Jaros
06/08/2021, 9:14 AMbind
instead of add
). It will be probably the only binding in KVision 5.x. Look here:
https://github.com/rjaros/tricity-example/blob/main/src/frontendMain/kotlin/com/example/project/App.kt#L58Hywel Bennett
06/08/2021, 9:15 AM