Ya, I wanted to put this into an extended base component, but there isn't one. Didn't think this would cause any harm, but a spec is a spec. Any suggestions on where this could go? Hopefully not into every extended component!
Travis On 10/27/05, Mathias Brökelmann <[EMAIL PROTECTED]> wrote: > Hi Travis, > > we can´t define this. Since UIComponentBase is a class of the spec. > > 2005/10/27, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: > > Author: prophecy > > Date: Wed Oct 26 17:00:12 2005 > > New Revision: 328766 > > > > URL: http://svn.apache.org/viewcvs?rev=328766&view=rev > > Log: > > Fixed autoUpdateDataTable to work in IE. > > > > Modified: > > myfaces/api/trunk/src/java/javax/faces/component/UIComponentBase.java > > > > Modified: > > myfaces/api/trunk/src/java/javax/faces/component/UIComponentBase.java > > URL: > > http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/component/UIComponentBase.java?rev=328766&r1=328765&r2=328766&view=diff > > ============================================================================== > > --- myfaces/api/trunk/src/java/javax/faces/component/UIComponentBase.java > > (original) > > +++ myfaces/api/trunk/src/java/javax/faces/component/UIComponentBase.java > > Wed Oct 26 17:00:12 2005 > > @@ -51,6 +51,7 @@ > > private List _facesListeners = null; > > private String _clientId = null; > > private String _id = null; > > + private Boolean _forceId = null; > > private UIComponent _parent = null; > > private boolean _transient = false; > > > > @@ -160,6 +161,17 @@ > > isIdValid(id); > > _id = id; > > _clientId = null; > > + } > > + > > + > > + public Boolean getForceId() > > + { > > + return _forceId; > > + } > > + > > + public void setForceId(Boolean _forceId) > > + { > > + this._forceId = _forceId; > > } > > > > public UIComponent getParent() > > > > > > > > > -- > Mathias >
