udash-core
udash-core copied to clipboard
Scala framework for building beautiful and maintainable web applications.
SeqProperties based on immutable models usually return immutable collections: ```scala model.subProp(_.vector).get //Vector[Int] ``` but direct usage is not quite as good: ```scala SeqProperty(2,1,3).get //scala.collection.Seq[Int] ``` The choice of base `Seq`...
Making a factory reuse the view and presenter often requires e.g. adding an empty parameter list to the class. We often see an issue with this being refactored away or...
https://blog.getbootstrap.com/2018/12/21/bootstrap-4-2-1/
This was patched for `.transform` in `0.8.x` series https://github.com/UdashFramework/udash-core/pull/474. We can ensure that uniformly by e.g. adding internal `listen` method which would propagate the flag to "derived" properties. See `PropertyTest`:...