[JBoss JIRA] Created: (RF-3458) Placing dragSupport inside simpleTogglePanel creates problems on firefox
by Hajo Krabbenhöft (JIRA)
Placing dragSupport inside simpleTogglePanel creates problems on firefox
------------------------------------------------------------------------
Key: RF-3458
URL: http://jira.jboss.com/jira/browse/RF-3458
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.0
Environment: JBoss AS 4.2.2.GA
RichFaces 3.2.0 SR1
WinXP Pro SP2
Reporter: Hajo Krabbenhöft
When i place an dragSupport inside a simpleTogglePanel with opened="false" set, on firefox, it will only work when i start dragging from text.
when i start dragging from besides the text, i will see the black dotted box drag indicator and it will not turn green when i hover over the drop zone.
it works fine in both cases on internet explorer.
when i convert the rich:simpleTogglePanel to a rich:panel, it works fine on both browsers.
problem:
<rich:simpleTogglePanel label="#{curTagGroup.name}"
switchType="client" style="width: 274px;" opened="false">
<ui:repeat value="#{curTagGroup.tags}" var="curTag">
<a4j:outputPanel styleClass="draggable-tag" onmouseover="#{mouseover}" onmouseout="#{mouseout}" layout="block">
<h:outputText value="#{curTag.name}"/>
<rich:dragSupport dragType="tag" dragValue="#{curTag}" />
</a4j:outputPanel>
</ui:repeat>
</rich:simpleTogglePanel>
works fine:
<rich:panel header="#{curTagGroup.name}"
switchType="client" style="width: 274px;">
<ui:repeat value="#{curTagGroup.tags}" var="curTag">
<a4j:outputPanel styleClass="draggable-tag" onmouseover="#{mouseover}" onmouseout="#{mouseout}" layout="block">
<h:outputText value="#{curTag.name}"/>
<rich:dragSupport dragType="tag" dragValue="#{curTag}" />
</a4j:outputPanel>
</ui:repeat>
</rich:panel>
as i said before, on ie it works on both cases as well as on firefox when you drag the div somwhere where its being overlayed by text.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 11 months
[JBoss JIRA] Created: (RF-6649) ExtendedDataTable: infinite loop in facelets.
by Alexander Dubovsky (JIRA)
ExtendedDataTable: infinite loop in facelets.
---------------------------------------------
Key: RF-6649
URL: https://jira.jboss.org/jira/browse/RF-6649
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0, 3.3.1
Environment: facelets
RF-3.3.0.GA, 3.3.1.BETA2
Reporter: Alexander Dubovsky
Assignee: Nick Belaevski
Attachments: log.txt
Source:
<!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:ui="http://java.sun.com/jsf/facelets"
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">
<head>
<meta http-equiv="Content-Type" content="text/xhtml; charset=UTF-8" />
</head>
<body>
<f:view>
<a4j:status startText="working" stopText=""></a4j:status>
<h:form>
<rich:extendedDataTable value="#{custom.value}" var="items"
width="830px" id="table">
<rich:column sortable="false" label="artikel" width="80px"
style="text-align:center">
<f:facet name="header">
<h:outputText value="Artikelnr" />
</f:facet>
<h:outputText value="#{items.make}" />
</rich:column>
<rich:column label="modname" width="150px" id="modname"
sortBy="#{items.model}" sortable="true">
<f:facet name="header">
<h:outputText value="Modellname" />
</f:facet>
<h:outputText value="#{items.model}" />
</rich:column>
</rich:extendedDataTable>
<a4j:commandButton reRender="table" value="reRender"></a4j:commandButton>
<a4j:log popup="false"></a4j:log>
</h:form>
</f:view>
</body>
</html>
# Open page. Try to sort the 2th column.
Result: infinite loop. Following error in a4j:log -
error[18:15:04,551]: Error parsing XML
error[18:15:04,551]: Parse Error: XML Parsing Error: undefined entity Location...
Full log is attached.
--
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
16 years, 11 months
[JBoss JIRA] Created: (RF-6776) realworld/pictures: "Use this photo like current album cover" check-box doesn't work
by Inna Shchibrya (JIRA)
realworld/pictures: "Use this photo like current album cover" check-box doesn't work
------------------------------------------------------------------------------------
Key: RF-6776
URL: https://jira.jboss.org/jira/browse/RF-6776
Project: RichFaces
Issue Type: Bug
Components: examples
Affects Versions: 3.3.0
Environment: FF-3, IE6, IE7, IE8
Reporter: Inna Shchibrya
Assignee: Andrey Markhel
Priority: Minor
1. Login to the application.
2. Select the album.
3. Select the photo with Edit possibility.
4. Click on Edit button.
6. Select "Use this photo like current album cover" check-box and click Save button.
7. Open the shelf with selected album. --> Cover isn't changed.
8. Select the same photo and click on Edit button. --> "Use this photo like current album cover" check-box isn't selected.
Expected result: "Use this photo like current album cover" check-box state should be saved. Album cover should be changed.
--
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
16 years, 11 months