All Versions
39
Latest Version
Avg Release Cycle
18 days
Latest Release
2836 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v0.6.7 Changes
June 16, 2017- ๐ Fixed #17 - when there was more than 9 items in collections, they were ordered 1, 10, 11 ..., 2, 20, 21..., 3...
-
v0.6.6 Changes
May 25, 2017- ๐ Fixed #15 - issue in collections, when
id
of struct was""
instead ofnil
- ๐ Changed Validator module to be compatible with
Formex.Ecto
0.2
- ๐ Fixed #15 - issue in collections, when
-
v0.6.5 Changes
April 01, 2017- ๐ Fixed using
multi_select
with array field when value of field isnil
- ๐ Fixed using
-
v0.6.4 Changes
March 08, 2017- ๐ Changed argument of
custom_value
callback
- ๐ Changed argument of
-
v0.6.3 Changes
March 07, 2017- โ Added a
custom_value
option in fields
- โ Added a
-
v0.6.2 Changes
February 21, 2017- โ Added another way to define the
translate_error
function, to fix usage with Distillery. Details are in Formex.Validator docs. - โ Added a default
translate_error
implementation, so you don't need to set it in config.ex, when you don't want to translate error messages.
- โ Added another way to define the
-
v0.6.1 Changes
February 16, 2017- ๐ Fixed file uploads in collections
-
v0.6.0 Changes
December 26, 2017๐ Changed behaviour when user sends no value for field.
Example
You have a form with
first_name
andlast_name
fields, and user manually removes in browser thefirst_name
field.What happens after form submit:
- Prior to formex 0.6.0, the
first_name
value will be unchanged. - Since 0.6.0, the
first_name
value will be""
.
This new behaviour is the same as in the Symfony form library. It was necessary to change, because browser sends no value in
multiple_select
if there is nothing selected, or even there may be no value in normalselect
when we using Ajax Bootstrap Select plugin and was nothing selected.- Prior to formex 0.6.0, the
๐ Fixed deselecting all options in multiple select jakub-zawislak/formex_ecto#2
-
v0.5.10 Changes
December 13, 2017- ๐ Changed behaviour of select validation. When user tried to provide an invalid select value
(that wasn't in list of available options), an elixir error was raised.
Since now user will see message
"invalid value"
attached to field, instead of server error. This message can be translated via gettext.
- ๐ Changed behaviour of select validation. When user tried to provide an invalid select value
(that wasn't in list of available options), an elixir error was raised.
Since now user will see message
-
v0.5.9 Changes
December 05, 2017- โ Added support for ajax selects plugins, such as Ajax-Bootstrap-Select