Replies: 2 comments
-
This is working as originally intended, see the 3rd example on this page. The text field should still be focusable so keyboard users can access it, and the user should be able to click into it to highlight the text for copy / paste. The only difference should be the lack of typing / deleting the text. |
Beta Was this translation helpful? Give feedback.
-
Generally speaking, If you want to display values that cannot be edited, consider using static text instead of an |
Beta Was this translation helpful? Give feedback.
-
Using an input field
<Input>
and passingreadonly
flag astrue
disallows editing of the field which is expected. However, it still gives off misleading hints of being editable by having an outline focus on click and the change of cursor on hover. Was this intended?Beta Was this translation helpful? Give feedback.
All reactions