You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In our project we use the Angular Form Control to save user input which he selects in a six-select. Unfortunately the six-select currently only supports string/string[] as value input. So we only can save string/string[] in our FormControl. If the six-select would take any object type as value we could save us some parsing and could save the selection directly as typed objects.
What does the proposed API look like?
instead of
value
value
The value of the control. This will be a string or an array depending on multiple.
string | string[]
''
i would prefer it more in this way:
value
value
The value of the control. This will be a string or an array depending on multiple.
any
''
similar to the material angular select:
https://material.angular.io/components/select/api
The text was updated successfully, but these errors were encountered:
What problem does this feature solve?
In our project we use the Angular Form Control to save user input which he selects in a six-select. Unfortunately the six-select currently only supports string/string[] as value input. So we only can save string/string[] in our FormControl. If the six-select would take any object type as value we could save us some parsing and could save the selection directly as typed objects.
What does the proposed API look like?
instead of
The text was updated successfully, but these errors were encountered: