[JBoss JIRA] Created: (RF-8735) modalPanel resizable problem patch
by Ilya Shaikovsky (JIRA)
modalPanel resizable problem patch
----------------------------------
Key: RF-8735
URL: https://jira.jboss.org/browse/RF-8735
Project: RichFaces
Issue Type: Patch
Security Level: Public (Everyone can see)
Affects Versions: 3.3.3.Final
Reporter: Ilya Shaikovsky
Assignee: Nick Belaevski
Nick customer proposed patch for the next problem:
"When setting width/height attributes on rich:modalpanel as well as setting resizeable="false" - the modal panel is still resizable.
If i don't specify the width/height attributes and just set autosize="true" with resizeable="false" the modal panel is not resizeable (Using RichFaces 3.3.3).
Is there any way to set the modal panel size and still make it not resizeable?
Is this a known issue?
Ori"
Need to verify and probably apply if confirmed
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 6 months
[JBoss JIRA] Created: (RF-4790) resize does not work for modalPanel with style="overflow: auto" and (autosized="false" or resizeable="false")
by Turhan Ozen (JIRA)
resize does not work for modalPanel with style="overflow: auto" and (autosized="false" or resizeable="false")
-------------------------------------------------------------------------------------------------------------
Key: RF-4790
URL: https://jira.jboss.org/jira/browse/RF-4790
Project: RichFaces
Issue Type: Bug
Components: doc
Affects Versions: 3.2.1
Environment: windows vista, java 1.5
Reporter: Turhan Ozen
Priority: Minor
If the user tries to resize the modal panel by dragging the lower right corner the mouse pointer is catched and there is no way to release it
with the following code
<rich:modalPanel id="detailPanel" width="960" height="700" style="overflow:auto" resizeable="false">
<f:facet name="header">
<h:outputText value="Detail"/>
</f:facet>
<f:facet name="controls">
<h:graphicImage value="/kaynaklar/imajlar/close.png" style="cursor:pointer" onclick="Richfaces.hideModalPanel('detailPanel')" />
</f:facet>
<table align="center" width="800px">
<tr>
<td align="center">
<a4j:commandButton value="OK" style="cursor:pointer" onclick="Richfaces.hideModalPanel('detailPanel')" />
</td>
</tr>
</table>
</rich:modalPanel>
In addition;
<f:facet name="controls">
<h:graphicImage value="/kaynaklar/imajlar/close.png" style="cursor:pointer" onclick="Richfaces.hideModalPanel('detailPanel')" />
</f:facet>
does not work in Firefox 3.x.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 6 months
[JBoss JIRA] Created: (RF-11138) tree does not invoke selectionChangeListener in popupPanel
by Bastian Ulke (JIRA)
tree does not invoke selectionChangeListener in popupPanel
----------------------------------------------------------
Key: RF-11138
URL: https://issues.jboss.org/browse/RF-11138
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-tree
Affects Versions: 4.0.0.Final
Environment: WinXP; JBoss 6.0.0.Final; RichFaces 4.0.0
Reporter: Bastian Ulke
I am having a tree for a selection of a node. To monitor a selection, I initialized the attribute "selectionType" to "ajax", added the attribute "selectionChangeListener" and made it point to a method of a managed bean. Everyhting is working extremely well, if I put the tree onto the form straight away: Everytime, a node is selected, the method is invoked and I get all the information I need to determine the selected node. The definition is as follows:
<rich:tree var="item"
id="tree2"
selection="#{treeController.selection}"
selectionType="ajax"
selectionChangeListener="#{treeController.selectionChanged}"
rendered="true">
Now, I want to have the same tree in a popup panel. All I do is wrapping a <rich:popupPanel id="abc2"> around it (so no moving to another place - both elements are directly located under the <h:form> node). Surprise: Nothing happens when a node is selected in the popup panel, the method, indicated in selectionChangeListener is never invoked. I remarked, that also the hidden input element form:tree2__SELECTION_STATE never changes its value throughout selecting differnt nodes.
Intersting: Adding toggleType="ajax" and toggleListener="#{orgTreeController.toggle}" to the same tree, works well in both cases.
Workaround:
1. Switch selectionType to "client"
2. Add a jsFunction and extend the controller with a property to accept the selected node's id
<a4j:jsFunction name="jsSetSelectedId">
<a4j:param name="name" assignTo="#{treeController.selectedId}"/>
</a4j:jsFunction>
3. Add a panel to the node's content and call the jsFunction from above in the onclick event
<rich:treeNode>
<a4j:outputPanel layout="block" onclick="jsSetSelectedId('#{item.id}');return true;">
...
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 6 months
[JBoss JIRA] (RF-11518) Missing default events in some rich components
by Ján Jamrich (Created) (JIRA)
Missing default events in some rich components
----------------------------------------------
Key: RF-11518
URL: https://issues.jboss.org/browse/RF-11518
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: cdk
Affects Versions: 4.1.0.Milestone3
Environment: RichFaces 4.1.0.20111011-M3 r.
Metamer 4.1.0.20111011-M3 r.22776
Mojarra 2.0.4-b09-jbossorg-4
JBoss Web 7.0.1.Final
Java(TM) SE Runtime Environment 1.6.0_26-b03 @ Linux
Firefox 8.0 @ Linux i686
Reporter: Ján Jamrich
Some rich components are missing default event.
I have created page with various rich components to test correct event behavior decode in Metamer: faces/components/a4jAjax/defaultEventHandlers.xhtml
There are components surrounding <a4j:ajax listener="#{richBean.actionListener}" render="output" />
Some of them raising exception indicating that default event is not set. Due to this are some of them commented. You can see label with name, but no input.
For now they are:
* rich:accordion
* rich:editor
* rich:inplaceInput
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 6 months
[JBoss JIRA] (RF-11508) archetype: GAE: cannot build archetype (4.1.0.20111011-M3) due to missing params in org.richfaces.cdk:maven-resources-plugin
by Ján Jamrich (Created) (JIRA)
archetype: GAE: cannot build archetype (4.1.0.20111011-M3) due to missing params in org.richfaces.cdk:maven-resources-plugin
----------------------------------------------------------------------------------------------------------------------------
Key: RF-11508
URL: https://issues.jboss.org/browse/RF-11508
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Affects Versions: 4.1.0.Milestone3
Environment: Maven settings from: http://anonsvn.jboss.org/repos/qa/richfaces/maven-settings
Jenkins job: https://hudson.qa.jboss.com/hudson/view/RF-Rel/job/richfaces-4.1-release-...
Archetype built by following command and parameters:
mvn archetype:generate -s richfaces-4.0-release-settings.xml
-DarchetypeGroupId=org.richfaces.archetypes
-DarchetypeArtifactId=richfaces-archetype-gae
-DarchetypeVersion=4.1.0.20111011-M3
-DgroupId=org.richfaces.tests.archetypes
-DartifactId=richfaces-gae-app
-Dversion=4.1.0.20111011-M3
-Dpackage=org.richfaces.tests.archetypes.simpleapp
-DinteractiveMode=false
-DarchetypeRepository=https://repository.jboss.org/nexus/content/groups/staging/
Then built generated archetype by following command:
mvn -f richfaces-gae-app/pom.xml -DVERSION=4.1.0.20111011-M3 package -s richfaces-4.0-release-settings.xml
Reporter: Ján Jamrich
Build by following command:
mvn -f richfaces-gae-app/pom.xml -DVERSION=4.1.0.20111011-M3 package -s richfaces-4.0-release-settings.xml
failed with this error:
[ERROR] Failed to execute goal org.richfaces.cdk:maven-resources-plugin:4.1.0.20111011-M3:process (process) on project richfaces-gae-app: The parameters 'staticResourceMappingFile', 'resourcesOutputDir' for goal org.richfaces.cdk:maven-resources-plugin:4.1.0.20111011-M3:process are missing or invalid -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginParameterException
I had a look at richfaces-gae-app/pom.xml and configuration options mentioned above are really missing. But I didn't found any info what is correct value. And secondly, this should be fixed in archetype code, not only locally.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 6 months