[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
14 years, 9 months
[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
14 years, 9 months
[JBoss JIRA] Created: (RF-3861) toolBarGroup: events do not work for component.
by Alexander Dubovsky (JIRA)
toolBarGroup: events do not work for component.
-----------------------------------------------
Key: RF-3861
URL: http://jira.jboss.com/jira/browse/RF-3861
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.2
Reporter: Alexander Dubovsky
Assigned To: Nick Belaevski
Priority: Critical
Events do not work for toolBarGroup component.
Source:
<rich:toolBar>
<rich:toolBarGroup onclick="alert('!!!')"
ondblclick="alert('!!!')"
onkeydown="alert('!!!')"
onkeypress="alert('!!!')"
onkeyup="alert('!!!')"
onmousedown="alert('!!!')"
onmousemove="alert('!!!')"
onmouseout="alert('!!!')"
onmouseover="alert('!!!')"
onmouseup="alert('!!!')">
<h:outputText value="test" />
<h:inputText value="test" />
</rich:toolBarGroup>
</rich:toolBar>
--
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
14 years, 9 months
[JBoss JIRA] Created: (RF-3877) Calendar: up and down buttons are displayed incorrectly on the time edit popup
by Tatyana Romanovich (JIRA)
Calendar: up and down buttons are displayed incorrectly on the time edit popup
------------------------------------------------------------------------------
Key: RF-3877
URL: http://jira.jboss.com/jira/browse/RF-3877
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.2
Environment: jsp
myfaces
browser: only IE 6
Reporter: Tatyana Romanovich
Assigned To: Anton Belevich
Priority: Minor
Attachments: CalendarCompButtonsOnTheTimeSelect.png
1.Open (create) any JSF Project and add calendar component to the jsf page:
<h:panelGrid id="panel" columns="2">
<a4j:outputPanel id="calendar" layout="block">
<rich:calendar value="#{calendarBean.selectedDate}"
locale="#{calendarBean.locale}"
popup="#{calendarBean.popup}"
datePattern="#{calendarBean.pattern}"
showApplyButton="#{calendarBean.showApply}"
cellWidth="12px" cellHeight="5px"
style="width:400px"/>
</a4j:outputPanel>
</h:panelGrid>
2. Run application on the Tomcat (6.0) or JBoss 4.2 Server
3. Open started application in the IE 6
4. Expand calendar control
5. Select any date
6. Click on the appeared time cell
7. Verify up and down buttons in the spinners on the time edit popup
Result: see attached screen shot
--
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
14 years, 9 months