[JBoss JIRA] (RF-11780) mobile showcase - JS error - can not find variable: SyntaxHighlighter
by Juraj Húska (JIRA)
[ https://issues.jboss.org/browse/RF-11780?page=com.atlassian.jira.plugin.s... ]
Juraj Húska commented on RF-11780:
----------------------------------
The same exception is thrown while loading demo for {{rich:placeholder}}
> mobile showcase - JS error - can not find variable: SyntaxHighlighter
> ---------------------------------------------------------------------
>
> Key: RF-11780
> URL: https://issues.jboss.org/browse/RF-11780
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: mobile, showcase
> Affects Versions: 4.1.0.CR2
> Environment: richfaces showcase 4.1.0.CR2
> container: JBoss AS 7.1.0.Beta1
> device: iPad
> Reporter: Juraj Húska
> Priority: Minor
> Fix For: 5-Future
>
> Attachments: jsError.PNG
>
>
> The JS error:
> {code}
> ReferenceError: Can not find variable: SyntaxHighlighter
> {code}
> is thrown, when loading demo for RichFaces functions(Miscellaneous).
--
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
13 years, 4 months
[JBoss JIRA] (RF-11067) rich:autocomplete popups with suggestions does not reflect the value in input
by Juraj Húska (JIRA)
[ https://issues.jboss.org/browse/RF-11067?page=com.atlassian.jira.plugin.s... ]
Juraj Húska updated RF-11067:
-----------------------------
Steps to Reproduce:
# load http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=autocom...
# write to the first input 'Wash'
# see that in the suggestion list is on the first position 'Alabama'
> rich:autocomplete popups with suggestions does not reflect the value in input
> -----------------------------------------------------------------------------
>
> Key: RF-11067
> URL: https://issues.jboss.org/browse/RF-11067
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-input, mobile, showcase
> Affects Versions: 4.1.0.Milestone1
> Environment: richfaces-showcase
> commit 4a534c358ff5903429609ff065fc27bae6fec2c0
> Reporter: Juraj Húska
> Assignee: Brian Leathem
> Fix For: 5-Tracking
>
>
> In richfaces-showcase, demo for rich:autocomplete, sample Custom Popup Layouts, popup with suggestions does not reflect what is typed in the input, it always shows the first row of suggestion.
> For example when I type v, it should render popup with suggestion Vermont, but instead of it suggest Alabama.
> This is corrected when something is chosen, for example Alabama, then suggestions work properly.
--
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
13 years, 4 months
[JBoss JIRA] (RF-12664) Showcase - rich:autocomplete - space separator works even when token is set just to comma
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RF-12664?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč commented on RF-12664:
---------------------------------
This behavior was introduced with RF-12445 and it is expected.
The description of new behavior is here:
https://github.com/richfaces/components/blob/develop/input/ui/src/main/ja...
The introduction of this behavior avoids need to define space as token character to use it as separators.
The space character is used as in {{trim()}} function, e.g.:
{code}
token: ","
input: "Washington, Colorado,North Carolina"
output: [ "Washington", "Colorado", "North Carolina" ]
token: ",; "
input: "Vancouver, Maple Leafs; Toronto"
output: [ "Vancouver", "Maple", "Leafs", "Toronto" ]
{code}
> Showcase - rich:autocomplete - space separator works even when token is set just to comma
> -----------------------------------------------------------------------------------------
>
> Key: RF-12664
> URL: https://issues.jboss.org/browse/RF-12664
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-input, showcase
> Affects Versions: 4.3.0.M3
> Environment: Chrome 23 and FF 17
> JBoss AS 7.1.1.Final
> Reporter: Juraj Húska
> Fix For: 4.3.0.CR1
>
> Original Estimate: 1 hour
> Remaining Estimate: 1 hour
>
> It works to fill in values in to the autocomplete input separated with spaces, even though the {{token}} attribute is set just to the comma separator.
> I tried this behavior when I saw [this|https://github.com/richfaces/showcase/commit/ad703a86ef29a6b41146a9b...] commit merged with upstream and it worked that time. I do not know why it is not working for me with 4.3.M3 release. I tried it also with 4.3.0-SNAPSHOT and the issue is also there.
--
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
13 years, 4 months
[JBoss JIRA] (RF-12670) JSF 2.0 compatibility issue, NoSuchFieldError: javax/faces/component/visit/VisitHint.SKIP_ITERATION
by Dupont Dupont (JIRA)
[ https://issues.jboss.org/browse/RF-12670?page=com.atlassian.jira.plugin.s... ]
Dupont Dupont commented on RF-12670:
------------------------------------
It should be possible by :
* putting jsf 2.1 jars into WEB-INF/lib and setting classloader = PARENT_LAST.
* or by adding jsf 2.1 into a shared lib.
I'll check it today.
I've also sent an email to IBM support to see if they are going to incorporate JSF 2.1.x into WAS 8.x anytime soon.
> JSF 2.0 compatibility issue, NoSuchFieldError: javax/faces/component/visit/VisitHint.SKIP_ITERATION
> ---------------------------------------------------------------------------------------------------
>
> Key: RF-12670
> URL: https://issues.jboss.org/browse/RF-12670
> Project: RichFaces
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Affects Versions: 4.3.0.M3
> Reporter: Dupont Dupont
> Fix For: 4.3.0.CR1
>
>
> When using RF 4.3.0-SNAPSHOT with a JSF 2.0 implementation (i.e. Websphere 8), I get a
> {code}
> java.lang.NoSuchFieldError: javax/faces/component/visit/VisitHint.SKIP_ITERATION
> at org.richfaces.component.UIDataAdaptor.requiresRowIteration(UIDataAdaptor.java:1387)
> at org.richfaces.component.UIDataAdaptor.visitTree(UIDataAdaptor.java:1304)
> at javax.faces.component.UIComponent.visitTree(UIComponent.java:793)
> at javax.faces.component.UIComponentBase.visitTree(UIComponentBase.java:1007)
> at javax.faces.component.UIForm.visitTree(UIForm.java:269)
> at javax.faces.component.UIComponent.visitTree(UIComponent.java:793)
> at javax.faces.component.UIComponentBase.visitTree(UIComponentBase.java:1007)
> at javax.faces.component.UIComponent.visitTree(UIComponent.java:793)
> at javax.faces.component.UIComponentBase.visitTree(UIComponentBase.java:1007)
> at org.apache.myfaces.lifecycle.DefaultRestoreViewSupport.processComponentBinding(DefaultRestoreViewSupport.java:90)
> at org.apache.myfaces.lifecycle.RestoreViewExecutor.execute(RestoreViewExecutor.java:142)
> at org.apache.myfaces.lifecycle.LifecycleImpl.executePhase(LifecycleImpl.java:171)
> at org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
> at
> {code}
> RF 4.3.0-SNAPSHOT is using an API introduced with JSF 2.1 in UIDataAdaptor.
> See https://github.com/richfaces/components/commit/d65e614ef03adf87c0b6df2288...
--
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
13 years, 4 months
[JBoss JIRA] (RF-12672) Collapsible sub table: noData facet doesn't work inside switchable panels
by Pavol Pitonak (JIRA)
Pavol Pitonak created RF-12672:
----------------------------------
Summary: Collapsible sub table: noData facet doesn't work inside switchable panels
Key: RF-12672
URL: https://issues.jboss.org/browse/RF-12672
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-output, component-tables, regression
Affects Versions: 4.3.0.M3
Environment: RichFaces 4.3.0.20121214-M3
Metamer 4.3.0.20121214-M3
Mojarra 2.1.7
JBoss AS 7.1.2.Final-redhat-1
Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux
Chrome 23.0.1271.97 @ Linux x86_64
Reporter: Pavol Pitonak
# deploy Metamer and open http://localhost:8080/metamer/faces/components/richCollapsibleSubTable/fa...
# set noData facet to whichever non-empty value you want
# click "Show data in table" checkbox
result:
* table should contain 2 subtables, each with red text defined in noData facet
* worked fine in RichFaces 4.3.0.M2
* doesn't work in all switchable panels: _rich:tabPanel_, _rich:accordion_ and _rich:togglePanel_
--
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
13 years, 4 months
[JBoss JIRA] (RF-12660) Second call of jsFunction inside dataTable does reach an action
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-12660?page=com.atlassian.jira.plugin.s... ]
Brian Leathem commented on RF-12660:
------------------------------------
I'm having a tough time inferring what you are trying to do with the above code snippet. Can you reproduce a complete-concise code example demonstrating the problem? See:
https://community.jboss.org/wiki/SubmittingEffectiveIssueReports
> Second call of jsFunction inside dataTable does reach an action
> ---------------------------------------------------------------
>
> Key: RF-12660
> URL: https://issues.jboss.org/browse/RF-12660
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-a4j-core
> Affects Versions: 4.2.2.Final
> Environment: Windows 7, Tomcat 6
> Reporter: Andrei Tikhomirov
> Labels: regression
> Fix For: 4.3.0.CR1
>
>
> jsFunction works correclty only for the row clicked at first.
> For second and other rows _onbegin_ fires, but _action_ and _oncomplete_ are not executed.
> POST request is executed.
> It worked for me on 4.0.0.Final and does not work after migration on 4.2.2.Final
> Reproduced on 4.2.3.Final
> {code}
> <rich:column>
> <span id="toggler#{row.id}" onclick="click(#{row.id});">
> <rich:collapsibleSubTableToggler for="subtbl" rendered="true"
> expandedIcon="/images/minus.png"
> collapsedIcon="/images/plus.png" />
> <a4j:jsFunction name="readFeeadbackMessage#{row.id}"
> onbegin="unbindFeedbackMessageClick(#{row.id});"
> action="#{bean.action(row.id)}"
> oncomplete="complete(#{row.id})"/>
> </span>
> ...........
> </rich:column>
> {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
13 years, 4 months
[JBoss JIRA] (RF-12660) Second call of jsFunction inside dataTable does reach an action
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-12660?page=com.atlassian.jira.plugin.s... ]
Brian Leathem updated RF-12660:
-------------------------------
Labels: regression waiting_on_user (was: regression)
> Second call of jsFunction inside dataTable does reach an action
> ---------------------------------------------------------------
>
> Key: RF-12660
> URL: https://issues.jboss.org/browse/RF-12660
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-a4j-core
> Affects Versions: 4.2.2.Final
> Environment: Windows 7, Tomcat 6
> Reporter: Andrei Tikhomirov
> Labels: regression, waiting_on_user
> Fix For: 4.3.0.CR1
>
>
> jsFunction works correclty only for the row clicked at first.
> For second and other rows _onbegin_ fires, but _action_ and _oncomplete_ are not executed.
> POST request is executed.
> It worked for me on 4.0.0.Final and does not work after migration on 4.2.2.Final
> Reproduced on 4.2.3.Final
> {code}
> <rich:column>
> <span id="toggler#{row.id}" onclick="click(#{row.id});">
> <rich:collapsibleSubTableToggler for="subtbl" rendered="true"
> expandedIcon="/images/minus.png"
> collapsedIcon="/images/plus.png" />
> <a4j:jsFunction name="readFeeadbackMessage#{row.id}"
> onbegin="unbindFeedbackMessageClick(#{row.id});"
> action="#{bean.action(row.id)}"
> oncomplete="complete(#{row.id})"/>
> </span>
> ...........
> </rich:column>
> {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
13 years, 4 months
[JBoss JIRA] (RF-12660) Second call of jsFunction inside dataTable does reach an action
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-12660?page=com.atlassian.jira.plugin.s... ]
Brian Leathem updated RF-12660:
-------------------------------
Description:
jsFunction works correclty only for the row clicked at first.
For second and other rows _onbegin_ fires, but _action_ and _oncomplete_ are not executed.
POST request is executed.
It worked for me on 4.0.0.Final and does not work after migration on 4.2.2.Final
Reproduced on 4.2.3.Final
{code}
<rich:column>
<span id="toggler#{row.id}" onclick="click(#{row.id});">
<rich:collapsibleSubTableToggler for="subtbl" rendered="true"
expandedIcon="/images/minus.png"
collapsedIcon="/images/plus.png" />
<a4j:jsFunction name="readFeeadbackMessage#{row.id}"
onbegin="unbindFeedbackMessageClick(#{row.id});"
action="#{bean.action(row.id)}"
oncomplete="complete(#{row.id})"/>
</span>
...........
</rich:column>
{code}
was:
jsFunction works correclty only for the row clicked at first.
For second and other rows _onbegin_ fires, but _action_ and _oncomplete_ are not executed.
POST request is executed.
It worked for me on 4.0.0.Final and does not work after migration on 4.2.2.Final
Reproduced on 4.2.3.Final
{code}
<rich:column>
<span id="toggler#{row.id}" onclick="click(#{row.id});">
<rich:collapsibleSubTableToggler for="subtbl" rendered="true" expandedIcon="/images/minus.png" collapsedIcon="/images/plus.png" />
<a4j:jsFunction name="readFeeadbackMessage#{row.id}" onbegin="unbindFeedbackMessageClick(#{row.id});" action="#{bean.action(row.id)}" oncomplete="complete(#{row.id})"/>
</span>
...........
</rich:column>
{code}
> Second call of jsFunction inside dataTable does reach an action
> ---------------------------------------------------------------
>
> Key: RF-12660
> URL: https://issues.jboss.org/browse/RF-12660
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-a4j-core
> Affects Versions: 4.2.2.Final
> Environment: Windows 7, Tomcat 6
> Reporter: Andrei Tikhomirov
> Labels: regression
> Fix For: 4.3.0.CR1
>
>
> jsFunction works correclty only for the row clicked at first.
> For second and other rows _onbegin_ fires, but _action_ and _oncomplete_ are not executed.
> POST request is executed.
> It worked for me on 4.0.0.Final and does not work after migration on 4.2.2.Final
> Reproduced on 4.2.3.Final
> {code}
> <rich:column>
> <span id="toggler#{row.id}" onclick="click(#{row.id});">
> <rich:collapsibleSubTableToggler for="subtbl" rendered="true"
> expandedIcon="/images/minus.png"
> collapsedIcon="/images/plus.png" />
> <a4j:jsFunction name="readFeeadbackMessage#{row.id}"
> onbegin="unbindFeedbackMessageClick(#{row.id});"
> action="#{bean.action(row.id)}"
> oncomplete="complete(#{row.id})"/>
> </span>
> ...........
> </rich:column>
> {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
13 years, 4 months