[JBoss JIRA] Created: (RF-1495) ListShuttle attributes. Differences in specification in comparison with listShuttle.xml
by Alexander Francuzov (JIRA)
ListShuttle attributes. Differences in specification in comparison with listShuttle.xml
---------------------------------------------------------------------------------------
Key: RF-1495
URL: http://jira.jboss.com/jira/browse/RF-1495
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.3
Reporter: Alexander Francuzov
Assigned To: Nick Belaevski
Attributes which exist in specification and do not exist in listShuttle.xml:
var
controlsType
controlsHorizontalAlign
controlsVerticalAlign
disabled
captionLabel
listClass
selectedRowClass
activeRowClass
disabledRowClass
selectedCellClass
activeCellClass
disabledCellClass
controlsClass
topControlClass
bottomControlClass
upControlClass
downControlClass
disabledControlClass
rowClasses
cellClasses
onorderchange
onorderchanged
ontopcontrolclick
onupcontrolclick
ondowncontrolclick
onbottomcontrolclick
onclick
onmouseover
onmouseout
onmousemove
oncaptionclick
Attributes which exist in listShuttle.xml and do not exist in specification:
+ submittedValue
+ submittedStrings
+ localValueSet
+ valid
+ validator
/1 sourceListWidth
/2 targetListWidth
+ listsHeight
+moveControlsVisible
+fastMoveControlsVisible
+copyAllControlLabel
+copyControlLabel
+removeControlLabel
+removeAllControlLabel
--
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
17 years, 3 months
[JBoss JIRA] Created: (RF-1442) discrepancy funcSpec and components
by Aleksej Yanul (JIRA)
discrepancy funcSpec and components
-----------------------------------
Key: RF-1442
URL: http://jira.jboss.com/jira/browse/RF-1442
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.3
Reporter: Aleksej Yanul
Assigned To: Svetlana mukhina
Attributes which are in a component:
id; attached; event; rendered; submitMode; disableDefaultMenu;
attributes that are not presented in the FuncSpec:
disableDefaultMenu
attributes that are not presented in the component:
Disabled; showDelay; hideDelay; Direction; popupWidth; jointPoint; horizontalOffset; verticalOffset; selectItemStyle;
selectItemClass; disabledItemStyle; disabledItemClass; styleClass; Style; itemStyle; itemClass; Oncollapse; Onexpand;
Onmouseout; Onmousemove; Onmouseover; Onitemselect; Ongroupactivate; attached;
--
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
17 years, 3 months
[JBoss JIRA] Created: (RF-961) Drag'n Drop: dragValue is null, when dragging across different regions
by Maksim Kaszynski (JIRA)
Drag'n Drop: dragValue is null, when dragging across different regions
----------------------------------------------------------------------
Key: RF-961
URL: http://jira.jboss.com/jira/browse/RF-961
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.0
Reporter: Maksim Kaszynski
Assigned To: Maksim Kaszynski
Fix For: 3.2.0
On the following page, dragValue is null.
In terms of JSF concepts, everything is correct - other regions just don't get processed.
maybe, we should hack it in some way.
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
<%@ taglib uri="http://labs.jboss.com/jbossrichfaces/ui/drag-drop" prefix="rich"%>
<%@ taglib uri="http://labs.jboss.com/jbossrichfaces/ui/panel" prefix="p"%>
<%@ taglib uri="http://labs.jboss.com/jbossrichfaces/ui/dataTable" prefix="t"%>
<html>
<head>
</head>
<body>
<f:view>
<center><rich:dragIndicator id="indicator"></rich:dragIndicator>
<h:form>
<h:panelGrid styleClass="generalTable">
<a4j:region>
<p:panel>
<t:dataTable id="iItems" value="#{PjCreationDataBean.initItems}" var="item">
<t:column>
<a4j:outputPanel style="border:1px;">
<rich:dragSupport dragType="item" dragIndicator=":indicator"
dragValue="#{item}">
<rich:dndParam name="label" value="#{item.item}" />
</rich:dragSupport>
<h:outputText value="#{item.item}" />
</a4j:outputPanel>
</t:column>
</t:dataTable>
</p:panel>
</a4j:region>
<a4j:region>
<p:panel>
<rich:dropSupport acceptedTypes="item"
dropListener="#{WeaponDropListener.processDrop}"
dropValue="#{PjCreationDataBean.selectedItems}" reRender="sItems">
</rich:dropSupport>
<t:dataTable id="sItems"
value="#{PjCreationDataBean.selectedItems}" var="item">
<t:column>
<a4j:outputPanel style="border:1px;">
<h:outputText value="#{item.item}" />
</a4j:outputPanel>
</t:column>
</t:dataTable>
</p:panel>
</a4j:region>
</h:panelGrid>
<center>
</h:form>
</f:view>
</body>
</html>
public class WeaponDropListener implements DropListener{
public void processDrop(DropEvent event) {
Dropzone dropZone = (Dropzone) event.getComponent();
ArrayList<InitItem> selected = (ArrayList) dropZone.getDropValue();
System.err.print(selected.size());
Object ob = event.getDragValue();
System.out.println("DragValue " + event.getDragValue());
System.out.println("DropValue " + event.getDropValue());
if(ob == null)
System.err.print("objeto nulo");
selected.add((InitItem) event.getDragValue());
}
}
--
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
17 years, 4 months