Ian Clarke
Ian Clarke
Thank you for the compliment :) Would you mind elaborating on this use-case, perhaps giving a specific example of what you'd like to do? It may be relevant to note...
Sorry about the delay in responding. Unfortunately I don't think this will be easy as the binding mechanism depends on knowing the element ids, which it will only know if...
Hi, yes - you can see an example [here](https://github.com/kwebio/kweb-core/blob/bee956f6e4d2a4905fe75852e8dacde83a024e40/src/main/kotlin/kweb/ElementCreator.kt#L85): `jsExpression = """document.getElementById("$id")"""` It's a Javascript expression that returns the element in JavaScript on the browser.
Happy to do it if our use of jitpack is a problem - my impression was that publishing to MC seemed like a PITA but I could be wrong.
I've filed the Jira issue to start this process.
I spent quite a while trying to set this up but it's extremely convoluted. Sticking with Jitpack until a better solution is available.
We definitely need more comprehensive examples illustrating best practices for things like user management. Kweb gives full access to both [local](https://github.com/kwebio/kweb-core/blob/master/src/main/kotlin/kweb/html/Document.kt#L58) and [session](https://github.com/kwebio/kweb-core/blob/master/src/main/kotlin/kweb/html/Document.kt#L64) storage via `Doc.localStorage` and `Doc.sessionStorage`, but currently...
@frnknglrt Thank you, that would be great :) Would [kweb-demos](https://github.com/kwebio/kweb-demos) be the right place for it?
@geomagilles I'll check out tailwind. To your second question, Kweb is released under the [LGPL](https://github.com/kwebio/kweb-core/blob/master/LICENSE), which is a "non-viral" license. In summary, you can build on Kweb and distribute whatever...
It's a good question, but I don't think so because kotlinx isn't solving quite the same problem as kweb, which is doing more than just HTML generation. Specifically, Kweb's `render...