Details
-
Type:
Improvement
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: EE-3.3.0.GA_P03, 4.1
-
Fix Version/s: EE-4.1.0.RC1, EE-4.1.0.GA, EE-3.3.0.GA_P04, 4.2.BETA, 4.2
-
Component/s: ICECORE-Components
-
Labels:None
-
Environment:All
-
Assignee Priority:P2
-
Support Case References:Support Case #13708 - https://icesoft.my.salesforce.com/5007000001ZJkDH
-
Affects:Documentation (User Guide, Ref. Guide, etc.)
Description
The icecore:focusManager tag only supports setting focus to components that are an instance of UIInput. This request is to see if support for buttons and links can be added so that on load of a page, a button or link can receive focus.
Testing the following code:
<icecore:focusManager for="buttonTwo">
<ace:pushButton id="buttonOne" value="Button One"/>
<ace:pushButton id="buttonTwo" value="Button Two"/>
<ace:pushButton id="buttonThree" value="Button Three"/>
</icecore:focusManager>
Shows the following warning: The "for" attribute points to a component that is not an instance of UIInput
Testing the following code:
<icecore:focusManager for="buttonTwo">
<ace:pushButton id="buttonOne" value="Button One"/>
<ace:pushButton id="buttonTwo" value="Button Two"/>
<ace:pushButton id="buttonThree" value="Button Three"/>
</icecore:focusManager>
Shows the following warning: The "for" attribute points to a component that is not an instance of UIInput
Implemented Focusable functionality for push and link buttons.