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
On iOS devices, we expect the native keyboard to display the "search" button when the user starts typing in the input. However, currently, it the keyboard shows "return" rather than "search". This is because iOS fails to detect the input as a search input if inputType is not set to "search". ui5wcr Input component does have a "type" property which allows the consumer to define the input type but it only has the options "Email, Number, Passward etc" and "search" is missing from that list. https://sap.github.io/ui5-webcomponents-react/?path=/docs/inputs-input--docs
The Combobox component also shares the same issue. The input component inside the combobox acts like a search bar so it should have input type "search". https://sap.github.io/ui5-webcomponents-react/?path=/docs/inputs-combobox--docs
Describe the solution you'd like
Adding "search" to the list of input type options for the Input component would allow iOS to detect Input components used as search bars and display the correct button on its keyboard. The input type for the input field inside combobox should be "search", or expose an api to allow consumers to define the input type.
Describe alternatives you've considered
No response
Additional Context
No response
Declaration
I’m not disclosing any internal or sensitive information.
The text was updated successfully, but these errors were encountered:
An enhancement of the input component is requested by enriching the existing type property with a new type - search. The reason for this request is that a special type of soft keyboard is shown on an iOS device. I checked it and I think that the only difference is the submit button text - for a regular input it is return, for search input it is search.
Is your feature request related to a problem?
On iOS devices, we expect the native keyboard to display the "search" button when the user starts typing in the input. However, currently, it the keyboard shows "return" rather than "search". This is because iOS fails to detect the input as a search input if inputType is not set to "search". ui5wcr Input component does have a "type" property which allows the consumer to define the input type but it only has the options "Email, Number, Passward etc" and "search" is missing from that list.
https://sap.github.io/ui5-webcomponents-react/?path=/docs/inputs-input--docs
The Combobox component also shares the same issue. The input component inside the combobox acts like a search bar so it should have input type "search".
https://sap.github.io/ui5-webcomponents-react/?path=/docs/inputs-combobox--docs
Describe the solution you'd like
Adding "search" to the list of input type options for the Input component would allow iOS to detect Input components used as search bars and display the correct button on its keyboard. The input type for the input field inside combobox should be "search", or expose an api to allow consumers to define the input type.
Describe alternatives you've considered
No response
Additional Context
No response
Declaration
The text was updated successfully, but these errors were encountered: