Created
November 2, 2019 18:55
-
-
Save elyphas/9257a96d146352b40a42c145f72f7d29 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def render = Observable ( | |
div ( id := "pageForm", | |
connectOtherComponents, | |
div( cls := "groupControls", | |
div( | |
cmpInput4("Ejercicio", hdlEjercicio.mapHandler[String](_.toInt){ f: Int => if (f <= 0) "" else f.toString}, | |
VDomModifier(width:="35px", marginRight:="30px", textAlign:="center"), | |
VDomModifier.empty ), | |
cmpInput4( | |
"Folio", | |
hdlFolio.mapHandler[String](_.toInt){ f: Int => if (f <= 0) "" else f.toString}, | |
VDomModifier(width:="45px", textAlign:="center"), | |
VDomModifier(onChangingIdComparative) | |
) | |
) | |
), | |
renderGrid, | |
) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment