[JBoss JIRA] Created: (RF-2320) The function must be used with a prefix when a default namespace is not specified PROBLEM
by Tomislav Jakopec (JIRA)
The function must be used with a prefix when a default namespace is not specified PROBLEM
-----------------------------------------------------------------------------------------
Key: RF-2320
URL: http://jira.jboss.com/jira/browse/RF-2320
Project: RichFaces
Issue Type: Feature Request
Reporter: Tomislav Jakopec
Fix For: 3.2.0
here is my code and it working fine on 3.1.4 GA but 3.2.0 SNAPSHOT not :(
<t:panelGrid columns="4">
<t:outputText value="#{messages['report.trenutniDatum']}" />
<t:selectBooleanCheckbox
value="#{izvjestajZaposlenik.trenutniDatum}"
onkeypress="return disableEnter(event);">
<a:support event="onclick"
actionExpression="#{izvjestajZaposlenik.setTrenutniDatum(!izvjestajZaposlenik.trenutniDatum)}"
reRender="datumVazenja" />
</t:selectBooleanCheckbox>
<t:outputText
value="#{messages['maticni.zaposlenik.datumVazenja']}" />
<r:calendar enableManualInput="true"
value="#{izvjestajZaposlenik.datumVazenja}" id="datumVazenja"
disabled="#{izvjestajZaposlenik.trenutniDatum}"
inputStyle="width: 90px"
oninputkeypress="return disableEnter(event);"
datePattern="#{operKonv.postavkeOperatera.prikazDatuma}" />
</t:panelGrid>
--
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
17 years, 10 months
[JBoss JIRA] Created: (RF-1644) <rich:datascroller scrollerlistener="" event is not fired when clicked on the scroller
by Arul Kumaran (JIRA)
<rich:datascroller scrollerlistener="" event is not fired when clicked on the scroller
----------------------------------------------------------------------------------------
Key: RF-1644
URL: http://jira.jboss.com/jira/browse/RF-1644
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.0
Environment: Software
Reporter: Arul Kumaran
<rich:datascroller .... > used to be working in version 3.1.0 and is broken when I moved to 3.2.0-SNAPSHOT version. I moved to this version to incorporate fix on rich:suggestionbox not passing the value of the "var" attribute. After I moved to 3.2.0-SNAPSHOT version the suggestion box issue is fixed but the datascroller stopped working since the scrollerlistener attribute method is not invoked.
e.g.
<rich:datascroller align="center" for="#{for}" maxPages="#{maxPages}" fastStep="#{fastStep}" scrollerListener="#{backingBean.scrollEvent}" pageIndexVar="#{backingBean.pageIndex}" renderIfSinglePage="#{renderIfSinglePage}" oncomplete="handleResize()" />
Issue is : scrollerListener="#{backingBean.scrollEvent}" is not invoked
public void scrollEvent(DataScrollerEvent event) {
....
pageIndex = (Integer.valueOf(newValue) - 1);
}
--
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
17 years, 10 months