Details
-
Type:
Improvement
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Component/s: ICE-Components
-
Labels:None
-
Environment:All
Description
In order to better assess the potential performance improvements made possible by converting existing ICEfaces components that use DOM Context D2D rendering techniques to instead use the JSF-standard ResponseWriter technique we need to create an ice:outputText component that uses ResponseWriter for rendering.
Issue Links
Activity
- All
- Comments
- History
- Activity
- Remote Attachments
- Subversion
revision 17206.
The renderer of the ice:outputText is using the responseWriter.
Show
Adnan Durrani
added a comment - revision 17206.
The renderer of the ice:outputText is using the responseWriter.
Here are copied html fragments from the component-showcase of the inputSecret component renderings, from before and after the code fix.
Before:
<input type="password" value="" size="10" onmousedown="this.focus();" onkeypress="iceSubmit(form,this,event);iceSubmit(form,this,event);" onfocus="setFocus(this.id);" onblur="setFocus('');iceSubmitPartial(form, this, event);setFocus('');iceSubmitPartial(form,this,event); return false;" name="iceform:TxtPw" maxlength="10" id="iceform:TxtPw" class="iceInpSecrt"/>
After:
<input type="password" value="" size="10" onmousedown="this.focus();" onkeypress="iceSubmit(form,this,event);" onfocus="setFocus(this.id);" onblur="setFocus('');iceSubmitPartial(form,this,event); return false;" name="iceform:TxtPw" maxlength="10" id="iceform:TxtPw" class="iceInpSecrt"/>