Releases: TheJuki/KFormMaster
Releases · TheJuki/KFormMaster
3.2.1
- Fixed Autocomplete text not showing up when initialized with a value.
- Added addFormElement function to FormBuildHelper and use apply/let to reduce code in FormBuilder.
- Completed document on how to create a custom form element.
3.2.0
3.1.3
3.1.2
3.1.1
3.1.0
- Remove 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.
3.0.0
- 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