[JBoss JIRA] Created: (RF-10573) calendar: has no default event for behavior
by Ilya Shaikovsky (JIRA)
calendar: has no default event for behavior
-------------------------------------------
Key: RF-10573
URL: https://issues.jboss.org/browse/RF-10573
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-input
Affects Versions: 4.0.0.Milestone6
Reporter: Ilya Shaikovsky
Assignee: Nick Belaevski
Priority: Minor
<rich:calendar value="#{calendarBean.selectedDate}" id="calendar"
locale="#{calendarBean.locale}" popup="#{calendarBean.popup}"
datePattern="#{calendarBean.pattern}"
showApplyButton="#{calendarBean.showApply}" cellWidth="24px"
cellHeight="22px" style="width:200px"
disabled="#{calendarBean.disabled}">
<rich:validator />
</rich:calendar>
throws:
javax.faces.view.facelets.TagException: /richfaces/calendar/samples/calendar-sample.xhtml @34,23 <rich:validator> Event attribute could not be determined: null
at org.richfaces.view.facelets.html.AjaxHandler.resolveEventName(AjaxHandler.java:205)
because :
public String getDefaultEventName() {
return null;
}
at org.richfaces.component.UICalendar
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 1 month
[JBoss JIRA] Created: (RF-10572) Opening a Calendar popup in a popupPanel that is too small results in scrollbars being rendered
by Marc-Christian Schroeer (JIRA)
Opening a Calendar popup in a popupPanel that is too small results in scrollbars being rendered
-----------------------------------------------------------------------------------------------
Key: RF-10572
URL: https://issues.jboss.org/browse/RF-10572
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-input, component-panels-layout-themes
Affects Versions: 4.0.0.Milestone6
Environment: Tomcat 7.0.6, MyFaces 2.0.4, RichFaces 4.0.0-SNAPSHOT
Reporter: Marc-Christian Schroeer
Priority: Minor
I try to use a rich:calendar component within a rich:popupPanel. Regardless of how I set the scrollable, movable or other attributes, everytime the calendar is shown, the browser displays scrollbars as the calendar's table does not fit into the dialog's boundaries.
A workaround for me is to override the "overflow" attributes in the "rf-pp-cnt-scrlr" style class with "overflow: visible;" using some css code like:
#addEditMemberAbsenceDialog_content_scroller.rf-pp-cnt-scrlr {
overflow: visible !important;
}
but there should be an easier way to get around this problem.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 1 month
[JBoss JIRA] Created: (RF-10589) Metamer - conversion fails from inside h:dataTable
by Lukas Fryc (JIRA)
Metamer - conversion fails from inside h:dataTable
--------------------------------------------------
Key: RF-10589
URL: https://issues.jboss.org/browse/RF-10589
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-a4j-core
Environment: * RichFaces 4.0.0-SNAPSHOT r.21803
* Metamer 4.0.0-SNAPSHOT r.21859
* Apache MyFaces JSF-2.0 Core Impl 2.0.4
* JBoss AS 6.0.0.Final
* OpenJDK Runtime Environment 1.6.0_20-b20 @Linux
* Firefox 3.6.13 @ Linux x86_64
Reporter: Lukas Fryc
<h:dataTable value="#{templateBean.dataTableModel}" var="item" id="containerHDataTable1">
<h:column>
<h:dataTable>
<a4j:repeat id="a4jRepeat" value="#{a4jRepeatBean.dataList}" var="item">
<h:inputText value="#{item.text}" />
<h:commandLink id="link" value="Link">
<f:ajax render="@form" execute="@form" />
<f:setPropertyActionListener target="#{a4jRepeatBean.selectedDataItem}" value="#{item}" />
</h:commandLink>
</a4j:repeat>
</h:column>
</h:dataTable>
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 1 month