[JBoss JIRA] (RF-12941) Showcase: ProgressBar demo - remove obsolete attribute and make the progress smoother
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RF-12941?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč resolved RF-12941.
-----------------------------
Resolution: Done
> Showcase: ProgressBar demo - remove obsolete attribute and make the progress smoother
> -------------------------------------------------------------------------------------
>
> Key: RF-12941
> URL: https://issues.jboss.org/browse/RF-12941
> Project: RichFaces
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: showcase
> Affects Versions: 4.3.1
> Reporter: Michal Petrov
> Assignee: Michal Petrov
> Priority: Minor
> Fix For: 4.3.2, 5.0.0.Alpha1
>
>
> The current solution is not a nice one (discovered after someone at stackOverflow wanted to create a simple progressbar).
> I changed it so it would increment itself via a4j:ajax, and also made the interval shorter as it seemed to have been taking a long time to finish.
> And I also removed an obsolete (and unimplemented) attribute.
--
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, 10 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.0.0.Alpha1
>
> 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, 10 months
[JBoss JIRA] (RF-12827) Showcase - switching among dynamically created panels, tabs cease to function
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RF-12827?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč resolved RF-12827.
-----------------------------
Resolution: Done
> Showcase - switching among dynamically created panels, tabs cease to function
> -----------------------------------------------------------------------------
>
> Key: RF-12827
> URL: https://issues.jboss.org/browse/RF-12827
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-panels-layout-themes, showcase
> Affects Versions: 4.3.0.Final
> Reporter: Juraj Húska
> Assignee: Brian Leathem
> Fix For: 4.3.2, 5.0.0.Alpha1
>
>
> Dynamically Tabs, Panels can not be switched after some working with them.
> It seems that they cease to function when the tab which was active after the form submission is revisited. It is working again after next form submission, but only till the new active tab is not clicked again.
> The following components are affected: rich:togglePanel, rich:tabPanel, rich:accordion.
--
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, 10 months
[JBoss JIRA] (RF-12765) Rich:tabPanel not possible to switch tabs when only dynamic tabs are present
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RF-12765?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč resolved RF-12765.
-----------------------------
Resolution: Done
> Rich:tabPanel not possible to switch tabs when only dynamic tabs are present
> ----------------------------------------------------------------------------
>
> Key: RF-12765
> URL: https://issues.jboss.org/browse/RF-12765
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-output
> Affects Versions: 4.3.0.M3, 4.3.0.CR2, 4.3.0.Final, 4.3.1
> Environment: Linux, windows any browser Chrom, Mozilla
> Reporter: Tali Han
> Assignee: Lukáš Fryč
> Fix For: 4.3.2, 5.0.0.Alpha1
>
> Original Estimate: 2 hours
> Remaining Estimate: 2 hours
>
> Rih:Tab panel functionality is broken.
> If you have dynamically generated tabs, you'll be able to switch from first to last, and then to first, but you'll not be able to switch to any other tab again.
> Remove from example that comes with richfaces distribution first static tab for dynamic tabs and you'll be able to reproduce this behaviour.
> richfaces/tabPanel/samples/dynamic-sample.xhtml
> {code}
> <rich:tabPanel activeItem="#{dynamicPanelBean.activeTab}">
> <ui:remove>
> <rich:tab header="Static">
> <p>This tab is static one.</p>
>
> <p>All of the following tabs are dynamically generated using <b>a4j:repeat</b>.</p>
> </rich:tab>
> </ui:remove>
> <a4j:repeat value="#{skinBean.skins}" var="skinName">
>
> <rich:tab header="#{skinName}" name="#{skinName}">
> <f:facet name="header">#{skinName}</f:facet>
> <i> All the controls below are just standard JSF components skinned with RichFaces: </i>
> <hr />
> <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, 10 months
[JBoss JIRA] (RF-12193) rich:extendedDataTable is blank on show
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RF-12193?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč resolved RF-12193.
-----------------------------
Resolution: Done
> rich:extendedDataTable is blank on show
> ---------------------------------------
>
> Key: RF-12193
> URL: https://issues.jboss.org/browse/RF-12193
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-tables
> Affects Versions: 4.2.1.Final
> Environment: Firefox 11, Internet Explorer 8
> Reporter: Nick Dev
> Assignee: Brian Leathem
> Fix For: 4.3.2, 5.0.0.Alpha1
>
> Original Estimate: 1 hour
> Remaining Estimate: 1 hour
>
> rich:extendedDataTable is blank when shown after it was hidden.
> Firefox: complete table is blank.
> IE: table header is not displayed.
> Table is shown after resizing the window.
--
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, 10 months
[JBoss JIRA] (RF-13014) Photoalbum: resource-optimizer plugin warns about NullPointerException
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RF-13014?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč commented on RF-13014:
---------------------------------
https://github.com/richfaces/richfaces/commit/3a59ddb791c3c22e0e0780bdc3c...
> Photoalbum: resource-optimizer plugin warns about NullPointerException
> ----------------------------------------------------------------------
>
> Key: RF-13014
> URL: https://issues.jboss.org/browse/RF-13014
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: examples
> Affects Versions: 5.0.0.Alpha1
> Reporter: Lukáš Fryč
> Assignee: Lukáš Fryč
> Fix For: 5.0.0.Alpha1
>
>
> {code}
> [ERROR]
> java.util.concurrent.ExecutionException: java.lang.NullPointerException
> at java.util.concurrent.FutureTask$Sync.innerGet(FutureTask.java:252)
> at java.util.concurrent.FutureTask.get(FutureTask.java:111)
> at org.richfaces.resource.plugin.ProcessMojo.execute(ProcessMojo.java:463)
> at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:101)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:209)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
> at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
> at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:84)
> at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:59)
> at org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBuild(LifecycleStarter.java:183)
> at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:161)
> at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:320)
> at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
> at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537)
> at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196)
> at org.apache.maven.cli.MavenCli.main(MavenCli.java:141)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:601)
> at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:290)
> at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:230)
> at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:409)
> at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:352)
> Caused by: java.lang.NullPointerException
> at org.richfaces.resource.optimizer.resource.handler.impl.DynamicResourceWrapper.getLibraryName(DynamicResourceWrapper.java:68)
> at org.richfaces.resource.optimizer.resource.util.ResourceUtil.getResourceQualifier(ResourceUtil.java:148)
> at org.richfaces.resource.plugin.ProcessMojo$3.apply(ProcessMojo.java:124)
> at org.richfaces.resource.plugin.ProcessMojo$3.apply(ProcessMojo.java:122)
> at com.google.common.base.Predicates$CompositionPredicate.apply(Predicates.java:536)
> at com.google.common.base.Predicates$AndPredicate.apply(Predicates.java:343)
> at org.richfaces.resource.optimizer.task.ResourceTaskFactoryImpl$ResourcesRendererCallable.checkResource(ResourceTaskFactoryImpl.java:128)
> at org.richfaces.resource.optimizer.task.ResourceTaskFactoryImpl$ResourcesRendererCallable.call(ResourceTaskFactoryImpl.java:154)
> at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:334)
> at java.util.concurrent.FutureTask.run(FutureTask.java:166)
> at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
> at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:334)
> at java.util.concurrent.FutureTask.run(FutureTask.java:166)
> at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
> at java.lang.Thread.run(Thread.java:722)
> {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, 10 months