Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.6DR#1
-
Component/s: ICE-Components
-
Labels:None
-
Environment:all
Description
The following use of selectinput text will ignore the first update
<ice:selectInputText rows="15"
width="200"
valueChangeListener="#{selectInput.updateSuggestions}">
<f:selectItems value="#{selectInput.list}"/>
</ice:selectInputText>
<ice:selectInputText rows="15"
width="200"
valueChangeListener="#{selectInput.updateSuggestions}">
<f:selectItems value="#{selectInput.list}"/>
</ice:selectInputText>
Fixed in r13607.
Problem was due to a dom update and a selectInput list update occurring on the same pass. I upgraded the selectInput text javascript to handle this condition.