[JBoss JIRA] Created: (RF-4011) rich:modalPanel "width" parameter does NOT work
by Yurii Kartsev (JIRA)
rich:modalPanel "width" parameter does NOT work
-----------------------------------------------
Key: RF-4011
URL: https://jira.jboss.org/jira/browse/RF-4011
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.2
Environment: JSF 1.2_07
Facelets 1.1.14
RF: v.3.2.2-SNAPSHOT SVN $Revision: 8947 $ $Date: 2008-06-07 08:39:49 -0400 (Sat, 07 Jun 2008) $
Browser: Mozilla Firefox 2.0.0.16
System: Windows XP SP2
App Server: JBoss 4.2.2 GA
Reporter: Yurii Kartsev
Priority: Critical
The parameter "width" in rich:modalPanel doesn't work. Only "minWidth" works.
Having this example, panel width is 550px:
<rich:modalPanel id="aboutModalBox" minHeight="100" minWidth="550" height="125" width="650" zindex="2000"/>
And having this one, it's 350px:
<rich:modalPanel id="aboutModalBox" minHeight="100" height="125" width="650" zindex="2000">
What's the point?
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 1 month
[JBoss JIRA] Created: (RF-4024) rich:tooltip missing ajaxchild encode code.
by Victor (JIRA)
rich:tooltip missing ajaxchild encode code.
-------------------------------------------
Key: RF-4024
URL: https://jira.jboss.org/jira/browse/RF-4024
Project: RichFaces
Issue Type: Bug
Reporter: Victor
Priority: Critical
on the page:
<rich:tooltip>
<h:panelGroup id="tooltipGroup">
some value outputs
</h:panelGroup>
<rich:tooltip>
<a4j:commandButton reRender="tooltipGroup" ..../>
as result tooltipGroup will not rerender and tooltipGroup missed in the Ajax-Update-Ids
Cause of this issue is following method in the UIToolTip class (notice else clause)
public void encodeAjaxChild(FacesContext context, String path, Set ids,
Set renderedAreas) throws IOException {
if(ids.contains(this.getClientId(context) + "content")){
AjaxContext ajaxContext = AjaxContext.getCurrentInstance(context);
ToolTipRenderer r = (ToolTipRenderer)getRenderer(context);
r.encodeTooltipText(context, this);
ajaxContext.getAjaxRenderedAreas().add(this.getClientId(context) + "content");
} else {
// todo
// AjaxContext ajaxContext = AjaxContext.getCurrentInstance(context);
// ajaxContext.e
}
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 1 month
[JBoss JIRA] Created: (RF-3900) <h:inputTextarea> does not work under myfaces.
by Alexander Dubovsky (JIRA)
<h:inputTextarea> does not work under myfaces.
----------------------------------------------
Key: RF-3900
URL: http://jira.jboss.com/jira/browse/RF-3900
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.2
Reporter: Alexander Dubovsky
Assigned To: Nick Belaevski
Priority: Critical
#Try to use <h:inputTextarea> component in application built under myfaces.
#Navigate to page with <h:inputTextarea>
Result: exception:
Caused by: java.lang.IllegalArgumentException: Component org.richfaces.component.html.HtmlInputTextarea is no HtmlInputTextarea
at org.apache.myfaces.taglib.html.HtmlInputTextareaTag.setProperties(HtmlInputTextareaTag.java:274)
at javax.faces.webapp.UIComponentELTag.createComponent(UIComponentELTag.java:100)
at javax.faces.webapp.UIComponentClassicTagBase.findComponent(UIComponentClassicTagBase.java:1101)
at javax.faces.webapp.UIComponentClassicTagBase.doStartTag(UIComponentClassicTagBase.java:431)
at org.apache.jsp.Skinning.Skinning_jsp._jspx_meth_h_005finputTextarea_005f0(Skinning_jsp.java:7312)
at org.apache.jsp.Skinning.Skinning_jsp._jspx_meth_f_005fsubview_005f0(Skinning_jsp.java:200)
at org.apache.jsp.Skinning.Skinning_jsp._jspService(Skinning_jsp.java:158)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:393)
... 51 more
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 1 month