We are happy to announce the release of WebSharper.UI 4.2.4.
This is a minor feature release of WebSharper.UI, out-of-band from WebSharper.
#163 Allow using the on.afterRender
attribute, the Elt.OnAfterRender()
method and the ws-onafterrender
template hole from the server side just like other event handlers.
#165 Add variadic overload for Attr
and Doc
-typed hole instantiation. For example, the following:
MyTemplate()
.Body(
[
h1 [] [text "Hello!"]
p [] [text "Welcome to my page."]
]
)
.Doc()
can now be written as:
MyTemplate()
.Body(
h1 [] [text "Hello!"],
p [] [text "Welcome to my page."]
)
.Doc()
serverLoad
is set to ServerLoad.WhenChanged
.Happy coding!
Can’t find what you were looking for? Drop us a line.