[JBoss JIRA] Created: (RF-5762) DnD: 'bypassUpdates' attribute does not skip the update model phase
by Andrei Markavtsov (JIRA)
DnD: 'bypassUpdates' attribute does not skip the update model phase
--------------------------------------------------------------------
Key: RF-5762
URL: https://jira.jboss.org/jira/browse/RF-5762
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Reporter: Andrei Markavtsov
Assignee: Nick Belaevski
<h:form id="form">
<h:inputText value="#{bean.value}"></h:inputText>
<h:outputLink id="drag">
<h:outputText value="Draggable" />
<rich:dragSupport
dragType="PHP"
bypassUpdates="true"
dragValue="Value">
<rich:dndParam name="label" value="Draggable" />
</rich:dragSupport>
</h:outputLink>
<rich:panel id="PHP">
<rich:dropSupport id="componentId" acceptedTypes="PHP" dropValue="PHP"
bypassUpdates="true"
>
</rich:dropSupport>
</rich:panel>
</h:form>
Input text updates model, but should not.
--
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-5788) Queue: ignoreDupResponse functionality change
by Ilya Shaikovsky (JIRA)
Queue: ignoreDupResponse functionality change
---------------------------------------------
Key: RF-5788
URL: https://jira.jboss.org/jira/browse/RF-5788
Project: RichFaces
Issue Type: Task
Affects Versions: 3.3.0
Reporter: Ilya Shaikovsky
Assignee: Nick Belaevski
Current state:
1) queue has ignoreDupResponces defined as true
2) request сomes to queue and fired after its delay
3) new similar request comes to queue
4) previous one client side processing aborted - new one sent.
RESULT parallel requests occur.
To Be Changed:
4) new request should wait till previous response returned(but the response should not be processed) and then to be sent.
RESULT just client-side response processing should be ignored but queue should works as for normal requests (without ignoreResponse). New request waits till previous actually finished.
--
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-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