All Versions
68
Latest Version
Avg Release Cycle
32 days
Latest Release
-

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