[JBoss JIRA] (RF-13145) Provide listener feedback for each file in the rich:fileUpload list
by Viliam Rockai (JIRA)
Viliam Rockai created RF-13145:
----------------------------------
Summary: Provide listener feedback for each file in the rich:fileUpload list
Key: RF-13145
URL: https://issues.jboss.org/browse/RF-13145
Project: RichFaces
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Components: component-input
Affects Versions: 4.3.2
Reporter: Viliam Rockai
I'm pasting here my thread from forums:
{quote}
I'm using RF 4.3.x and I'm struggling with something which may be pretty common use-case - feedback from the rich:fileUpload component for each file separately. We're processing each file in fileUploadListener, but some files may be corrupted, or just invalid in general. I'm looking for a way how to provide a feedback for the user, not only about the uploading itself, but even if the processing of file in listener has succeeded. Actually, my goal is to change the color in the rich:fileUpload file list to green if everything is OK or change the color to red and provide relevant error message if an exception was thrown in the listener.
{quote}
https://community.jboss.org/thread/231747
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 7 months
[JBoss JIRA] (RF-13107) ajaxRenderer component are renderer even though they are in non-active switchable panel, causing JSF to fail to update DOM
by Pavol Pitonak (JIRA)
[ https://issues.jboss.org/browse/RF-13107?page=com.atlassian.jira.plugin.s... ]
Pavol Pitonak commented on RF-13107:
------------------------------------
Verified in 4.3.4, it's ready to be closed.
> ajaxRenderer component are renderer even though they are in non-active switchable panel, causing JSF to fail to update DOM
> --------------------------------------------------------------------------------------------------------------------------
>
> Key: RF-13107
> URL: https://issues.jboss.org/browse/RF-13107
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-validators
> Affects Versions: 4.3.2
> Reporter: Jonáš Trantina
> Assignee: Lukáš Fryč
> Fix For: 4.3.4
>
> Attachments: bug_reproducer.zip, reproducer_ajax.zip, rf13107ajax.png
>
> Original Estimate: 1 hour, 30 minutes
> Remaining Estimate: 1 hour, 30 minutes
>
> We have a form with a tabPanel component with two tabs A and B. In A there is an input and its rich:message in B the same plus a button that submits and re-renders B. When B is opened (thus A is not rendered) and the form is submitted and validation fails, then no message is shown.
> Note that:
> 1) switchType must be set to server to ensure the A's rich:message is really not on the page.
> 2) button in B must re-render only content of B
> This is only a specific scenario, the issue might occur also in other situations (e.g. global messages tag outside of tabPanel is not rendered).
> Please find the enclosed reproducer.
> Snipper:
> {code:xml}
> <h:form>
> <rich:tabPanel switchType="server">
> <rich:tab>
> <h:inputText id="surname" value="#{richBean.surname}">
> <f:validateLength minimum="10"/>
> </h:inputText>
> <rich:message for="surname"/>
> </rich:tab>
> <rich:tab>
> <h:panelGroup id="content">
> <h:inputText id="name" value="#{richBean.name}">
> <f:validateLength minimum="6"/>
> </h:inputText>
> <rich:message for="name"/>
> </h:panelGroup>
> <a4j:commandButton value="Submit" execute="content" render="content" />
> </rich:tab>
> </rich:tabPanel>
> </h:form>
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 7 months
[JBoss JIRA] (RF-13144) Hello I have Rich :calender componemt Now I want to use it as input and call DataTable values from Table I am trying this but wont look like work
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RF-13144?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč resolved RF-13144.
-----------------------------
Assignee: Lukáš Fryč
Resolution: Rejected
> Hello I have Rich :calender componemt Now I want to use it as input and call DataTable values from Table I am trying this but wont look like work
> ---------------------------------------------------------------------------------------------------------------------------------------------------
>
> Key: RF-13144
> URL: https://issues.jboss.org/browse/RF-13144
> Project: RichFaces
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: base functionality
> Reporter: Asim Shaikh
> Assignee: Lukáš Fryč
>
> this is my code in
> <rich:calendar value="#{eventMaster.eventDate}"
> popup="#{eventMaster.popup}" datePattern="#{eventMaster.pattern}"
> showApplyButton="#{eventMaster.showApply}" cellWidth="24px" cellHeight="22px" style="width:200px"
> disabled="#{eventMaster.disabled or eventMaster.viewMode}">
> </rich:calendar>
> <h:commandButton value="#{lbl['label.search']}" action="#{eventMaster.searchOutputScreenRecords}" id="evntrtys99rchhh"/>
> now i wanted to call a action which will Search my Database(MySql) and display the records of selectedDate I ma calling it on commandbutton .I also write query above commandbutton works for h:inputText .Please help me in this regard
> My Bean----
> public Date getEventDate() {
> return eventDate;
> }
> public void setEventDate(Date eventDate) {
> this.eventDate = eventDate;
> }
> Action-------
> public String searchOutputScreenRecords() {
> this.searchVariableAvailable = true;
> EventMasterOps opsObj = new EventMasterOps();
> if (this.outputSearch != null) {
> this.outputList = opsObj.searchRecordsInDatabase(this.outputSearch, ConstantsUtility.searchOutputForm);
> if (this.outputList == null) {
> this.massage = "No Search Record is found.";
> }
> }
> }
> In this method this.outputList = opsObj.searchRecordsInDatabase(this.outputSearch, ConstantsUtility.searchOutputForm); I have write my query to find search inputs
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 7 months
[JBoss JIRA] (RF-13144) Hello I have Rich :calender componemt Now I want to use it as input and call DataTable values from Table I am trying this but wont look like work
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RF-13144?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč edited comment on RF-13144 at 8/21/13 9:21 AM:
----------------------------------------------------------
Hey Asim, could you write into user forums [1] to seek help?
Issue tracker is not a best place to discuss issue like this.
Here should be clearly reported what needs to be fixed.
[1] https://community.jboss.org/en/richfaces
was (Author: lfryc):
Hey Asim, could you write into user forums [1] to seek help
> Hello I have Rich :calender componemt Now I want to use it as input and call DataTable values from Table I am trying this but wont look like work
> ---------------------------------------------------------------------------------------------------------------------------------------------------
>
> Key: RF-13144
> URL: https://issues.jboss.org/browse/RF-13144
> Project: RichFaces
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: base functionality
> Reporter: Asim Shaikh
>
> this is my code in
> <rich:calendar value="#{eventMaster.eventDate}"
> popup="#{eventMaster.popup}" datePattern="#{eventMaster.pattern}"
> showApplyButton="#{eventMaster.showApply}" cellWidth="24px" cellHeight="22px" style="width:200px"
> disabled="#{eventMaster.disabled or eventMaster.viewMode}">
> </rich:calendar>
> <h:commandButton value="#{lbl['label.search']}" action="#{eventMaster.searchOutputScreenRecords}" id="evntrtys99rchhh"/>
> now i wanted to call a action which will Search my Database(MySql) and display the records of selectedDate I ma calling it on commandbutton .I also write query above commandbutton works for h:inputText .Please help me in this regard
> My Bean----
> public Date getEventDate() {
> return eventDate;
> }
> public void setEventDate(Date eventDate) {
> this.eventDate = eventDate;
> }
> Action-------
> public String searchOutputScreenRecords() {
> this.searchVariableAvailable = true;
> EventMasterOps opsObj = new EventMasterOps();
> if (this.outputSearch != null) {
> this.outputList = opsObj.searchRecordsInDatabase(this.outputSearch, ConstantsUtility.searchOutputForm);
> if (this.outputList == null) {
> this.massage = "No Search Record is found.";
> }
> }
> }
> In this method this.outputList = opsObj.searchRecordsInDatabase(this.outputSearch, ConstantsUtility.searchOutputForm); I have write my query to find search inputs
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 7 months
[JBoss JIRA] (RF-13144) Hello I have Rich :calender componemt Now I want to use it as input and call DataTable values from Table I am trying this but wont look like work
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RF-13144?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč commented on RF-13144:
---------------------------------
Hey Asim, could you write into user forums [1] to seek help
> Hello I have Rich :calender componemt Now I want to use it as input and call DataTable values from Table I am trying this but wont look like work
> ---------------------------------------------------------------------------------------------------------------------------------------------------
>
> Key: RF-13144
> URL: https://issues.jboss.org/browse/RF-13144
> Project: RichFaces
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: base functionality
> Reporter: Asim Shaikh
>
> this is my code in
> <rich:calendar value="#{eventMaster.eventDate}"
> popup="#{eventMaster.popup}" datePattern="#{eventMaster.pattern}"
> showApplyButton="#{eventMaster.showApply}" cellWidth="24px" cellHeight="22px" style="width:200px"
> disabled="#{eventMaster.disabled or eventMaster.viewMode}">
> </rich:calendar>
> <h:commandButton value="#{lbl['label.search']}" action="#{eventMaster.searchOutputScreenRecords}" id="evntrtys99rchhh"/>
> now i wanted to call a action which will Search my Database(MySql) and display the records of selectedDate I ma calling it on commandbutton .I also write query above commandbutton works for h:inputText .Please help me in this regard
> My Bean----
> public Date getEventDate() {
> return eventDate;
> }
> public void setEventDate(Date eventDate) {
> this.eventDate = eventDate;
> }
> Action-------
> public String searchOutputScreenRecords() {
> this.searchVariableAvailable = true;
> EventMasterOps opsObj = new EventMasterOps();
> if (this.outputSearch != null) {
> this.outputList = opsObj.searchRecordsInDatabase(this.outputSearch, ConstantsUtility.searchOutputForm);
> if (this.outputList == null) {
> this.massage = "No Search Record is found.";
> }
> }
> }
> In this method this.outputList = opsObj.searchRecordsInDatabase(this.outputSearch, ConstantsUtility.searchOutputForm); I have write my query to find search inputs
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 7 months
[JBoss JIRA] (RF-12802) Move page fragments from repository qa to richfaces5
by Pavol Pitonak (JIRA)
[ https://issues.jboss.org/browse/RF-12802?page=com.atlassian.jira.plugin.s... ]
Pavol Pitonak commented on RF-12802:
------------------------------------
We're working on refactoring right now. Several page fragment are finishe but there are still few of them not refactored:
* log, message(s), notify, panel, panel menu, popup panel, toggle control, toolbar, tooltip, tree
After all existing page fragments are refactored, they will be migrated to richfaces repository. We will create missing page fragments in Alpha3.
> Move page fragments from repository qa to richfaces5
> ----------------------------------------------------
>
> Key: RF-12802
> URL: https://issues.jboss.org/browse/RF-12802
> Project: RichFaces
> Issue Type: Task
> Security Level: Public(Everyone can see)
> Components: build/distribution
> Affects Versions: 5.0.0.Alpha1
> Reporter: Pavol Pitonak
> Fix For: 5.0.0.Alpha2
>
>
> As discussed on community meeting on Feb 12, we should move page fragments for RichFaces components to richfaces5 repository so that they are distributed with framework.
> We should find out how to prepare them so that they are easy to use for community members. RichFaces QE/dev need to test internals of components, community members will probably test only high-level functionality of components. One possible solution would be to create package "internal" in which there would be page fragments extending those from "public" package. QE team would then use "internal" implementations.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 7 months
[JBoss JIRA] (RF-12802) Move page fragments from repository qa to richfaces5
by Pavol Pitonak (JIRA)
[ https://issues.jboss.org/browse/RF-12802?page=com.atlassian.jira.plugin.s... ]
Pavol Pitonak reassigned RF-12802:
----------------------------------
Assignee: Pavol Pitonak
> Move page fragments from repository qa to richfaces5
> ----------------------------------------------------
>
> Key: RF-12802
> URL: https://issues.jboss.org/browse/RF-12802
> Project: RichFaces
> Issue Type: Task
> Security Level: Public(Everyone can see)
> Components: build/distribution
> Affects Versions: 5.0.0.Alpha1
> Reporter: Pavol Pitonak
> Assignee: Pavol Pitonak
> Fix For: 5.0.0.Alpha2
>
>
> As discussed on community meeting on Feb 12, we should move page fragments for RichFaces components to richfaces5 repository so that they are distributed with framework.
> We should find out how to prepare them so that they are easy to use for community members. RichFaces QE/dev need to test internals of components, community members will probably test only high-level functionality of components. One possible solution would be to create package "internal" in which there would be page fragments extending those from "public" package. QE team would then use "internal" implementations.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 7 months
[JBoss JIRA] (RF-13116) Using filters with paging / default filter value in extendeddatatable
by Pavol Pitonak (JIRA)
[ https://issues.jboss.org/browse/RF-13116?page=com.atlassian.jira.plugin.s... ]
Pavol Pitonak reassigned RF-13116:
----------------------------------
Assignee: Juraj Húska (was: Pavol Pitonak)
> Using filters with paging / default filter value in extendeddatatable
> ---------------------------------------------------------------------
>
> Key: RF-13116
> URL: https://issues.jboss.org/browse/RF-13116
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Reporter: John Strandmyr
> Assignee: Juraj Húska
> Priority: Critical
> Labels: datascroller, extendedDataTable, filter
>
> I've got an extededdatatable from richfaces and if i add a default value to the filter, so that some rows are excluded on first rendering, and then change the filter to show the rows that were hidden, I don't get any calls to the actionlisteners on the rows that were hidden at first.
> It works fine on those rows that was shown in the first page load, but not on those hidden.
> The same issue appears when i use paging, and some rows are on page two. if i use the filter to show some rows from another page, the actionlistener isnt triggered. I can still click on those rows that was apparent on the first page, but not on the other pages.
> If I don't have a default filter, or a pager, i can add and remove filtering and everything is fine.
> {code}
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
> <html xmlns="http://www.w3.org/1999/xhtml"
> xmlns:h="http://java.sun.com/jsf/html"
> xmlns:f="http://java.sun.com/jsf/core"
> xmlns:a4j="http://richfaces.org/a4j"
> xmlns:rich="http://richfaces.org/rich">
> <h:head>
> <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
> <h:outputScript name="jsf.js" library="javax.faces"/>
> </h:head>
> <h:body>
> <h:form>
> <rich:extendedDataTable value="#{tiltakServer.tiltak}" var="tiltak" id="tiltakTable">
> <rich:column filter="#{tiltakFilter.tittelImpl}">
> <f:facet name="header">
> <h:outputText value="Tittel" />
> <h:panelGroup styleClass="filter">
> <h:inputText value="#{tiltakFilter.tittelFilter}">
> <a4j:ajax event="keyup" render="tiltakTable@body" execute="@this"/>
> </h:inputText>
> </h:panelGroup>
> </f:facet>
> <h:outputText value="#{tiltak.tittel}"/>
> </rich:column>
> <rich:column>
> <f:facet name="header">
> Edit
> </f:facet>
> <h:commandLink value="Goto">
> <f:actionListener type="no.hmskontoret.hmskontoret.hendelsesregister.TiltakOnEditActionListener"/>
> </h:commandLink>
> </rich:column>
> </rich:extendedDataTable>
> </h:form>
> </h:body>
> </html>
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 7 months
[JBoss JIRA] (RF-13144) Hello I have Rich :calender componemt Now I want to use it as input and call DataTable values from Table I am trying this but wont look like work
by Asim Shaikh (JIRA)
[ https://issues.jboss.org/browse/RF-13144?page=com.atlassian.jira.plugin.s... ]
Asim Shaikh updated RF-13144:
-----------------------------
Description:
this is my code in
<rich:calendar value="#{eventMaster.eventDate}"
popup="#{eventMaster.popup}" datePattern="#{eventMaster.pattern}"
showApplyButton="#{eventMaster.showApply}" cellWidth="24px" cellHeight="22px" style="width:200px"
disabled="#{eventMaster.disabled or eventMaster.viewMode}">
</rich:calendar>
<h:commandButton value="#{lbl['label.search']}" action="#{eventMaster.searchOutputScreenRecords}" id="evntrtys99rchhh"/>
now i wanted to call a action which will Search my Database(MySql) and display the records of selectedDate I ma calling it on commandbutton .I also write query above commandbutton works for h:inputText .Please help me in this regard
My Bean----
public Date getEventDate() {
return eventDate;
}
public void setEventDate(Date eventDate) {
this.eventDate = eventDate;
}
Action-------
public String searchOutputScreenRecords() {
this.searchVariableAvailable = true;
EventMasterOps opsObj = new EventMasterOps();
if (this.outputSearch != null) {
this.outputList = opsObj.searchRecordsInDatabase(this.outputSearch, ConstantsUtility.searchOutputForm);
if (this.outputList == null) {
this.massage = "No Search Record is found.";
}
}
}
In this method this.outputList = opsObj.searchRecordsInDatabase(this.outputSearch, ConstantsUtility.searchOutputForm); I have write my query to find search inputs
was:
this is my code in
<rich:calendar value="#{eventMaster.eventDate}"
popup="#{eventMaster.popup}" datePattern="#{eventMaster.pattern}"
showApplyButton="#{eventMaster.showApply}" cellWidth="24px" cellHeight="22px" style="width:200px"
disabled="#{eventMaster.disabled or eventMaster.viewMode}">
</rich:calendar>
<h:commandButton value="#{lbl['label.search']}" action="#{eventMaster.searchOutputScreenRecords}" id="evntrtys99rchhh"/>
now i wanted to call a action which will Search my Database(MySql) and display the records of selectedDate I ma calling it on commandbutton .I also write query above commandbutton works for h:inputText .Please help me in this regard
> Hello I have Rich :calender componemt Now I want to use it as input and call DataTable values from Table I am trying this but wont look like work
> ---------------------------------------------------------------------------------------------------------------------------------------------------
>
> Key: RF-13144
> URL: https://issues.jboss.org/browse/RF-13144
> Project: RichFaces
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: base functionality
> Reporter: Asim Shaikh
>
> this is my code in
> <rich:calendar value="#{eventMaster.eventDate}"
> popup="#{eventMaster.popup}" datePattern="#{eventMaster.pattern}"
> showApplyButton="#{eventMaster.showApply}" cellWidth="24px" cellHeight="22px" style="width:200px"
> disabled="#{eventMaster.disabled or eventMaster.viewMode}">
> </rich:calendar>
> <h:commandButton value="#{lbl['label.search']}" action="#{eventMaster.searchOutputScreenRecords}" id="evntrtys99rchhh"/>
> now i wanted to call a action which will Search my Database(MySql) and display the records of selectedDate I ma calling it on commandbutton .I also write query above commandbutton works for h:inputText .Please help me in this regard
> My Bean----
> public Date getEventDate() {
> return eventDate;
> }
> public void setEventDate(Date eventDate) {
> this.eventDate = eventDate;
> }
> Action-------
> public String searchOutputScreenRecords() {
> this.searchVariableAvailable = true;
> EventMasterOps opsObj = new EventMasterOps();
> if (this.outputSearch != null) {
> this.outputList = opsObj.searchRecordsInDatabase(this.outputSearch, ConstantsUtility.searchOutputForm);
> if (this.outputList == null) {
> this.massage = "No Search Record is found.";
> }
> }
> }
> In this method this.outputList = opsObj.searchRecordsInDatabase(this.outputSearch, ConstantsUtility.searchOutputForm); I have write my query to find search inputs
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 7 months