Replies: 4 comments 9 replies
-
DropdownfullTextSearch used fomantic in a few projects with different people 90% of the time a search Dropdown was used "exact" was the value wanted |
Beta Was this translation helpful? Give feedback.
-
CalendarconstantHeightcurrent value: Whenever the first of a month is shown within the first 5 columns of a calendar, then, according to the months amount of days, a full adjacent row is added to the calendar, which is unnecessary in most cases, so i suggest to turn this setting off by default |
Beta Was this translation helpful? Give feedback.
-
CalendarmonthFirst Current value: The standard date format widely used is Modalautofocus Current value: This option tries to focus the first field of form if the modal has a form. And it's annoying when the form contains the dropdown as the first field or form with only dropdown. It makes the dropdown to be opened automatically because of focus event. And also, if the field has some special logic binds with focus event, this would also trigger automatically which is unexpected in most situations. And modal and form do not belong together all the time, so I think it make sense to lets the user decide whether to enable focus when the form is required and wants the field to be focused. I disabled this option for all modals in my project so, I needed to provide this option all the time. Most of my forms load dynamically within the modal via Ajax, and I can't predict whether the form would have dropdown as first field. So, disabled this option would help to avoid this situations. |
Beta Was this translation helpful? Give feedback.
-
APIrawResponsecurrent value: The new default will not force convert JSON Arrays to JSON Objects anymore when provided to the onResponse event handler. |
Beta Was this translation helpful? Give feedback.
-
Which settings should change in 2.9.0 ?
I would like to collect suggestions for changes of default values for 2.9.0 (some are already prepared in PRs)
While working with FUI, sometimes you stumble upon behaviors which seems to be wrong or annoying and you always use a different setting for your usage. While you of course can override them globally, i think we should change some values in the core directly. As it is a breaking change this has to wait until 2.9.0
Whenever you suggest some change, please also add a little explanation why you think that value should change.
By using the Emoji-Reactions on each suggestion we can see how many people agree to that
Let me start 🙂
Form
errorFocus
current value:
false
new value:
true
PR: #2041
The new default will always focus the first error field of a form which is more logical. To adjust a form field content you almost always have to click into that field with the current Logic
Dropdown
forceSelection
current value:
true
new value:
false
PR: #1747
suggested by @larsbo in #1742:
If you click into a dropdownfield and just click somewhere else again, the first entry of the dropdown is always selected which is most probably not always the desired behavior. A given
required
attribute from a to be convertedselect
should automatically setforceSelection
totrue
again.Beta Was this translation helpful? Give feedback.
All reactions