[JBoss JIRA] (RF-12925) rich:notify, notifyMessage, notifyMessages: no detail and no summary
by Jiří Štefek (JIRA)
Jiří Štefek created RF-12925:
--------------------------------
Summary: rich:notify, notifyMessage, notifyMessages: no detail and no summary
Key: RF-12925
URL: https://issues.jboss.org/browse/RF-12925
Project: RichFaces
Issue Type: Enhancement
Security Level: Public (Everyone can see)
Environment: RichFaces 4.3.2-SNAPSHOT
Metamer 5.0.0-SNAPSHOT
JBoss AS 7.1.1.Final
Java(TM) SE Runtime Environment 1.7.0_09-b05 @ Linux
Firefox 18.0 @ Linux x86_64
Reporter: Jiří Štefek
Consider, when:
* rich:notify: @summary and @detail are empty,
* rich:notifyMessage(s): @showSummary=false and @showDetail=false,
should these empty messages be created/rendered?
The rich:message(s) components aren't displayed if these conditions apply.
--
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, 11 months
[JBoss JIRA] (RF-12849) Showcase - update readme - remove obsolete, add new
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RF-12849?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč commented on RF-12849:
---------------------------------
Hey Juraj, could you proceed with the readme update?
All updates seems valid but clickable TOC - it will be useful in rendered README.md, but it won't be useful in plain text version.
> Showcase - update readme - remove obsolete, add new
> ---------------------------------------------------
>
> Key: RF-12849
> URL: https://issues.jboss.org/browse/RF-12849
> Project: RichFaces
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: doc, showcase
> Affects Versions: 4.3.1
> Reporter: Juraj Húska
> Assignee: Juraj Húska
> Fix For: 4.3.2
>
> Original Estimate: 30 minutes
> Remaining Estimate: 30 minutes
>
> After rewriting showcase readme to markdown syntax I would update it for example with following:
> * reference to showcase online demo
> * remove publishing to GAE and put there publishing to Openshift instead
> * I would create small clickable TOC in the top of the page
> * remove deploying on JBoss AS 6 and maybe add deploying on EAP 6 (it is now available to download)
> * Mention JBDS as an option
--
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, 11 months
[JBoss JIRA] (RF-12924) rich:notifyMessage(s): add information about for which id they were created
by Jiří Štefek (JIRA)
Jiří Štefek created RF-12924:
--------------------------------
Summary: rich:notifyMessage(s): add information about for which id they were created
Key: RF-12924
URL: https://issues.jboss.org/browse/RF-12924
Project: RichFaces
Issue Type: Enhancement
Security Level: Public (Everyone can see)
Components: component-validators
Reporter: Jiří Štefek
Priority: Minor
The created rich:notifyMessage(s) don't include an id of which input it was created for, but the rich:message(s) do (in theirs @id). Wouldn't it be possible to include such information somewhere?
--
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, 11 months
[JBoss JIRA] (RF-12784) Showcase readme - update deployment from eclipse part
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RF-12784?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč reassigned RF-12784:
-------------------------------
Assignee: Lukáš Fryč (was: Juraj Húska)
> Showcase readme - update deployment from eclipse part
> -----------------------------------------------------
>
> Key: RF-12784
> URL: https://issues.jboss.org/browse/RF-12784
> Project: RichFaces
> Issue Type: Enhancement
> Security Level: Public(Everyone can see)
> Components: doc, showcase
> Affects Versions: 4.3.0.Final, 5-Tracking
> Reporter: Juraj Húska
> Assignee: Lukáš Fryč
> Priority: Trivial
> Fix For: 4.3.2
>
> Original Estimate: 30 minutes
> Remaining Estimate: 30 minutes
>
> The deployment of the showcase from eclipse needs to be written down in in more details, because it is not trivial:
> An user needs to be aware of:
> * select correct maven profile
> * alter the deployment assembly
> * be aware of wrong context root load in the eclipse browser
> I will send pull request for this one.
--
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, 11 months
[JBoss JIRA] (RF-12848) Error "source is not defined" after richfaces-jsf-event.js merge
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RF-12848?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč resolved RF-12848.
-----------------------------
Resolution: Done
> Error "source is not defined" after richfaces-jsf-event.js merge
> ----------------------------------------------------------------
>
> Key: RF-12848
> URL: https://issues.jboss.org/browse/RF-12848
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: core
> Affects Versions: 4.3.1
> Reporter: Torben Greiser
> Assignee: Lukáš Fryč
> Priority: Critical
> Labels: regression
> Fix For: 4.3.2, 5-Tracking
>
> Attachments: rf12848_1.xhtml
>
> Original Estimate: 2 hours
> Remaining Estimate: 2 hours
>
> Commit 9255380d626227d909bbcd59ea3bc604966ea5bb breaks the following jsf.ajax.request:
> {code}
> jsf.ajax.request("MyContainer:MySelectionForm", "valueChange", {});
> {code}
> In <a4j:log/> the following error is displayed:
> {code}
> richfaces.queue: ajax submit error: source is not defined
> {code}
> After inspecting richfaces.js I located the cause of the error:
> {code}
> var getFormElement = function(sourceElement) {
> if ($(sourceElement).is('form')) {
> return source;
> } else {
> return $('form').has(sourceElement).get(0);
> }
> };
> {code}
> First if-statement evaluates to true, returning source, which itself is not defined:
> {code}
> ReferenceError: source is not defined
> {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, 11 months
[JBoss JIRA] (RF-12923) rich:notify, notifyMessage, notifyMessages: some attributes are not applied to created message component
by Jiří Štefek (JIRA)
Jiří Štefek created RF-12923:
--------------------------------
Summary: rich:notify, notifyMessage, notifyMessages: some attributes are not applied to created message component
Key: RF-12923
URL: https://issues.jboss.org/browse/RF-12923
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-validators
Environment: RichFaces 4.3.2-SNAPSHOT
Metamer 5.0.0-SNAPSHOT
JBoss AS 7.1.1.Final
Java(TM) SE Runtime Environment 1.7.0_09-b05 @ Linux
Firefox 18.0 @ Linux x86_64
Reporter: Jiří Štefek
Attributes: style (styleClass is applied), title, dir* and lang* are only applied to created empty span element of the component, but not for the created message.
*rich:notify doesn't contain these attributes
--
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, 11 months