2015-01-11

Input

Got simple input done today. This code ...
input("text", $text, "text")
input("integer", $integer, "integer")
input("decimal", $decimal, "decimal")
input("alphanumeric", $alphaNumeric, "alphaNumeric")
input("email", $email, "Email")
... turns into this ...


Each input field gets pushed into a key for whatever is needed. I still need to add a way to put character limits on the amount of text that can be typed. I'd also like to put an optional range for acceptable number input. That isn't too critical since those limitations can be done by messing with the value stored in the key that the input makes. There is still more to do with input, like toggles, toggle groups, drop down menus. I'm more interested in adding one more large sub system... Missions!

No comments:

Post a Comment