All Versions
68
Latest Version
Avg Release Cycle
32 days
Latest Release
-
Changelog History
Page 6
Changelog History
Page 6
-
v3.2.0 Changes
- โ Added maxLines to form models. Set to a number greater than 1 to increase the number of visible lines.
- ๐ Merged PR #22 to fix the DSL Form Builder.
-
v3.1.3 Changes
- โ Added rightToLeft (RTL) to form models. Set to false to set the edit text fields to display left to right.
-
v3.1.2 Changes
- ๐ Fixes the month number used by the Date and DateTime elements
-
v3.1.1 Changes
- โ Add autoMeasureEnabled to FormBuildHelper constructor to fix a recylerview that uses wrap_content
-
v3.1.0 Changes
- โ Removed all uses of "!!" and replaced with "?" or "?.let" for safer code
- reInitDialog() function added to DropDown and MultiCheckBox elements so that the options list can be changed dynamically. Resolves issue #17
- โ Add "enabled" to form elements. Dynamically enable/disable any form element. Resolves issue #19.
-
v3.0.0 Changes
- The title, edit, and error views are now accessible through the model classes
- ๐ The refreshView() function has been removed (No longer needed)
- The getFormElement() function now requires a type and returns a non-optional element
- The form is now dynamic. The title, hint, value, error, visible, required fields can be changed at any time without refreshing the form manually.
- The clear() function has been added to all form elements
- The header can now collapse "child" elements when tapped (Set collapsible to true)
- โก๏ธ The FullscreenFormActivity example has been updated to test the new dynamic features
-
v2.1.3 Changes
- The isValidForm function now works correctly
- 0๏ธโฃ The numbersOnly field has been added to FormNumberEditTextElement to prevent symbols from being entered. By default numbers and symbols are allowed.
-
v2.1.2 Changes
- โ Added ability to add your own custom form elements in your project
- โ Added example to show how to add a custom form element
-
v2.1.1 Changes
- โ Added cacheForm to FormBuildHelper. When set to true, the RecyclerView will cache all form element views instead of recycling them.
-
v2.1.0 Changes
- โ Removed valueChanged in BaseFormElement
- โ Added even more comments
- โ Added Unit Test