Skybrud.Forms v1.0.0-beta005
Installation
Changelog
-
Added option for setting fields as disabled (see 270f6ea)
In some cases in makes sense to have a field that the user can see, but not edit. So with this release, most fields now support setting them as disabled. -
Introduced new password field type (see c60c74c)
ThePasswordField
class may now be be used to represent password fields. This also introduces a newAddPasswordField
extension method for conveniently adding a password field to aForm
instance. -
Introduced new date field type (see 75cdd7f)
TheDateField
class may now be be used to represent date fields. This also introduces a newAddDateField
extension method for conveniently adding a date field to aForm
instance. -
Introduced new caption field type (see 62bfefe)
TheCaptionField
allows adding a title and/or description in between regular form fields, helping to make your forms more user friendly. -
Minor adjustments to the
ListItem
class (808b891)
This introduces a new construct overload and also sets the order of properties when a list item is serialized to JSON.