Hi,
We observe a behavior that the TextItem icon and date pickers do not have outline while on focus in IE, but the focus outline shows correctly in Chrome and Firefox.
Is there any way to show the focus outline correctly in IE? Tried to add "<style>:focus {outline: 1px dotted; outline: auto -webkit-focus-ring-color;}</style>" in html header and it works for text field and date field but does not work for icons and date pickers.
We are using SmartClient_v91p_2015-02-11_PowerEdition. Tried the latest SmartClient_v91p_2017-08-20_PowerEdition, same behavior. Tried SmartClient 11.0 and the focus works.
Steps to reproduce: tab to focus the icon and the date picker.
Thanks,
Robin
We observe a behavior that the TextItem icon and date pickers do not have outline while on focus in IE, but the focus outline shows correctly in Chrome and Firefox.
Is there any way to show the focus outline correctly in IE? Tried to add "<style>:focus {outline: 1px dotted; outline: auto -webkit-focus-ring-color;}</style>" in html header and it works for text field and date field but does not work for icons and date pickers.
We are using SmartClient_v91p_2015-02-11_PowerEdition. Tried the latest SmartClient_v91p_2017-08-20_PowerEdition, same behavior. Tried SmartClient 11.0 and the focus works.
Steps to reproduce: tab to focus the icon and the date picker.
Code:
isc.DynamicForm.create({ width: 200, fields : [ { title: "Severity Level", type: "text", icons: [{ src: "other/help.png" }] }, {title: "Start Date", type: "date", useTextField: true } ] });
Robin
Comment