[
https://issues.apache.org/jira/browse/TRINIDAD-965?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14577387#comment-14577387
]
Anupam Wadehra commented on TRINIDAD-965:
-----------------------------------------
I am facing the same issue. Does any one knows the status of this issue or any
workarounds?
> cursor does not appear to go anywhere after PPR if next tabbed component was
> updated
> ------------------------------------------------------------------------------------
>
> Key: TRINIDAD-965
> URL: https://issues.apache.org/jira/browse/TRINIDAD-965
> Project: MyFaces Trinidad
> Issue Type: Bug
> Components: Components
> Affects Versions: 1.0.6-core
> Environment: IE 7/Firefox 2
> Reporter: Paul Mander
> Priority: Minor
>
> Test case based on TRINIDAD-952
> <tr:inputText label="Label 1"
> id="inputText1"
> binding="#{tabfails.inputText1}"
> autoSubmit="true"
> valueChangeListener="#{tabfails.doSomething1}"/>
> <tr:inputText label="Label 2"
> id="inputText2"
> binding="#{tabfails.inputText2}"
> partialTriggers="inputText1" />
> <tr:inputText label="Label 3"
> id="inputText3"
> binding="#{tabfails.inputText3}"
> partialTriggers="inputText1"/>
> public void doSomething1(ValueChangeEvent valueChangeEvent) {
> String value1 = inputText1.getValue() == null ? null :
> inputText1.getValue().toString();
> String value2 = inputText2.getValue() == null ? null :
> inputText2.getValue().toString();
>
> inputText2.setSubmittedValue(null);
> inputText2.setValue(value1 + value2);
> }
> Enter anything in inputtext1 and tab. InputText2 is updated but no component
> appears to have focus.
> Note that in 1.0.6, different behaviour was seen between IE and Firefox. IE
> would maintain focus back on "tabbed from" input. Since TRINIDAD-952 both
> browsers behave the same.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)