Details
-
Type: Bug
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: 1.8.1, 1.8.2-RC1
-
Fix Version/s: 1.8.2
-
Component/s: ICE-Components
-
Labels:None
-
Environment:IE
Description
When an input component executes a partialSubmit the inputRichText component on the page gets focus no matter where it is on the page. This behavior is not seen in Firefox.
-
Hide
- Case8653Example.war
- 6.13 MB
- Arran Mccullough
-
- META-INF/MANIFEST.MF 0.1 kB
- META-INF/context.xml 0.1 kB
- WEB-INF/classes/.../example/TestBean.class 1 kB
- WEB-INF/faces-config.xml 0.5 kB
- WEB-INF/lib/FastInfoset.jar 285 kB
- WEB-INF/lib/backport-util-concurrent.jar 319 kB
- WEB-INF/lib/commons-beanutils.jar 226 kB
- WEB-INF/lib/commons-collections.jar 558 kB
- WEB-INF/lib/commons-digester.jar 140 kB
- WEB-INF/lib/commons-discovery.jar 75 kB
- WEB-INF/lib/commons-el.jar 110 kB
- WEB-INF/lib/commons-fileupload.jar 56 kB
- WEB-INF/lib/commons-lang.jar 240 kB
- WEB-INF/lib/commons-logging.jar 52 kB
- WEB-INF/lib/icefaces-comps.jar 1.93 MB
- WEB-INF/lib/icefaces.jar 1.06 MB
- WEB-INF/lib/jsf-api.jar 356 kB
- WEB-INF/lib/jsf-impl.jar 778 kB
- WEB-INF/lib/jstl.jar 20 kB
- WEB-INF/web.xml 3 kB
- index.jsp 0.1 kB
- main.jspx 2 kB
Activity
- All
- Comments
- History
- Activity
- Remote Attachments
- Subversion
Fixed.
Modified: D:\work\development\head\svn\ossrepo\icefaces\trunk\icefaces\component\src\com\icesoft\faces\component\inputrichtext\fckeditor_ext.js
Sending content: D:\work\development\head\svn\ossrepo\icefaces\trunk\icefaces\component\src\com\icesoft\faces\component\inputrichtext\fckeditor_ext.js
Completed: At revision: 19299
Show
Adnan Durrani
added a comment - Fixed.
Modified: D:\work\development\head\svn\ossrepo\icefaces\trunk\icefaces\component\src\com\icesoft\faces\component\inputrichtext\fckeditor_ext.js
Sending content: D:\work\development\head\svn\ossrepo\icefaces\trunk\icefaces\component\src\com\icesoft\faces\component\inputrichtext\fckeditor_ext.js
Completed: At revision: 19299
Verified with success on 1.8.2 build3 using IE6 and IE7
Test app was added to repo\qa\trunk\Regression\ICE-4961
Show
Joanne Bai
added a comment - Verified with success on 1.8.2 build3 using IE6 and IE7
Test app was added to repo\qa\trunk\Regression\ ICE-4961
Test Case Code:
<ice:form>
{testBean.menuValue}<ice:panelGrid columns="2">
<ice:outputText value="Menu:"/>
<ice:selectOneMenu value="#
"
{testBean.menuValueChanged}partialSubmit="true"
valueChangeListener="#
">
{testBean.richTextComp}<f:selectItem itemLabel="Item One" itemValue="one"/>
<f:selectItem itemLabel="Item Two" itemValue="two"/>
<f:selectItem itemLabel="Item Three" itemValue="three"/>
<f:selectItem itemLabel="Item Four" itemValue="four"/>
<f:selectItem itemLabel="Item Five" itemValue="five"/>
</ice:selectOneMenu>
<ice:outputText value="Input:"/>
<ice:inputText />
<ice:outputText value="Input:"/>
<ice:inputText />
<ice:outputText value="Input:"/>
<ice:inputText />
<ice:outputText value="Input:"/>
<ice:inputText />
<ice:outputText value="Input:"/>
<ice:inputText />
<ice:outputText value="Rich Text:"/>
<ice:inputRichText toolbar="Basic"
saveOnSubmit="true"
binding="#
"
{testBean.richTextValue}value="#
"
id="richText1"
height="108" width="802"/>
</ice:panelGrid>
</ice:form>