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
