[JBoss JIRA] Created: (RF-1273) when add modalPanel and ui:rating rating not work at all
by Vitaly Smyk (JIRA)
when add modalPanel and ui:rating rating not work at all
--------------------------------------------------------
Key: RF-1273
URL: http://jira.jboss.com/jira/browse/RF-1273
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.3
Environment: SUN RI 1.2, Tomahawk 1.6, rihfaces 3.1.2, Tomcat 6.10
Reporter: Vitaly Smyk
Priority: Minor
after add rich:modalPanel ui:rating stop working, but rendered.
ui components - sun blueprints components
<rich:modalPanel id="staticpopup" minHeight="200" minWidth="450"
height="400" width="500" zindex="2000">
</rich:modalPanel>
<html:form id="form">
<ui:rating maxGrade="5" includeNotInterested="false" includeClear="true" gradeReadOnly="false"
hoverTexts="#{Film.ratingText}"
clearHoverText="Очистить" grade="#{Film.rating}"/>
</html:form>
--
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
14 years, 9 months
[JBoss JIRA] Created: (RF-1081) Drag and Drop within the tree not updating the destination node
by Peter Mahoney (JIRA)
Drag and Drop within the tree not updating the destination node
---------------------------------------------------------------
Key: RF-1081
URL: http://jira.jboss.com/jira/browse/RF-1081
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.1
Reporter: Peter Mahoney
When dragging a node to another location on the tree, the source node is updated with the dropped node removed but the dropped node does not appear at the destination until a page refresh or a tree node is expanded/contracted.
I have the following tree:
<rich:tree id="quizTree" switchType="ajax" dropListener="#{quizTreeHandler.questionDrop}">
<rich:treeNodesAdaptor id="groups" nodes="#{quizTreeHandler.groups}" var="group">
<rich:treeNode dragIndicator=":indicator" dragType="group" dragValue="#{group}" acceptedTypes="qtiQuestion,question,group" reRender="quizTree">
<h:commandLink action="#{group.edit}" value="#{empty group.title ? msgs.quizDefaultQuestionGroupTitle : group.title}" />
</rich:treeNode>
<rich:treeNodesAdaptor id="questions" nodes="#{group.questions}" var="question">
<rich:treeNode dragIndicator=":indicator" dragType="question" dragValue="#{question}" acceptedTypes="qtiQuestion,question" reRender="quizTree">
<h:commandLink action="#{question.view}" value="#{question.title}" />
</rich:treeNode>
</rich:treeNodesAdaptor>
</rich:treeNodesAdaptor>
</rich:tree>
--
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
14 years, 9 months
[JBoss JIRA] Created: (RF-1133) rich:datascroller does not reset when data model is changed
by henrik lindberg (JIRA)
rich:datascroller does not reset when data model is changed
-----------------------------------------------------------
Key: RF-1133
URL: http://jira.jboss.com/jira/browse/RF-1133
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.1
Reporter: henrik lindberg
Priority: Blocker
When the datamodel for a rich:dataTable is replaced with a new model the rich:datascroller still remembers its old page index.
Now, in order to make it work, I have to look up the UIData and set the index to 0 when I change the datamodel.
I would expect it to either be set to 0, or to the value of "first" attribute in the rich:dataTable when its model is changed.
This problem is blocking me from releasing my application - I have *many* affected datascrollers and doing the following for all of them would not be fun...
// how I reset the first value - perhaps there are beter ways to do this
String id = "spaceForm:content_list";
UIComponent comp = FacesContext.getCurrentInstance().getViewRoot().findComponent( id );
if(comp == null)
throw new IllegalArgumentException("Can not find component with id = '"+id+"'");
if(!(comp instanceof UIData))
throw new IllegalArgumentException("Id does not refer to a UIData instance");
UIData uidata = (UIData)comp;
uidata.setFirst(0);
--
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
14 years, 9 months
[JBoss JIRA] Created: (RF-1014) HEAD build is broken
by Igor Shabalov (JIRA)
HEAD build is broken
--------------------
Key: RF-1014
URL: http://jira.jboss.com/jira/browse/RF-1014
Project: RichFaces
Issue Type: Bug
Environment: Try to update cvn from head and run mvn clean install
Reporter: Igor Shabalov
Assigned To: Alexander Smirnov
Priority: Critical
[INFO] Create class file org.richfaces.component.html.HtmlDatascroller
ClassNotFoundException message: org.richfaces.component.html.HtmlDatascroller
Sep 25, 2007 2:27:42 PM org.ajax4jsf.templatecompiler.builder.AbstractCompilationContext loadClass
SEVERE: Error load class: org.richfaces.component.html.HtmlDatascroller
Many other SEVERE: messages like that is generated during build
--
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
14 years, 9 months
[JBoss JIRA] Created: (RF-2490) Header facet in the rich:dataTable ignore column "rendered" attribute
by Alexander Smirnov (JIRA)
Header facet in the rich:dataTable ignore column "rendered" attribute
---------------------------------------------------------------------
Key: RF-2490
URL: http://jira.jboss.com/jira/browse/RF-2490
Project: RichFaces
Issue Type: Bug
Environment: RichFaces 3.2 snapshot from 3/10.
Reporter: Alexander Smirnov
Assigned To: Alexander Smirnov
Fix For: 3.2.0
The headers of data tables are no longer following the render rule of its parent h:column tag.
The headers are rendering no matter what the rule is. The actual content is following the render rule. I noticed that if I wrap the whole h:column
into an a4j:region tag and place the render rule there instead, it all renders correctly. However, I think it should work the way it was before right ??
The f:facet tag should comply to the render rule in the h:column tag ?
Here's a code snippet.......
<rich:dataTable ...>
<h:column id="checkBoxCol" rendered="#{itemList_editableUser or itemList_subProfileView or itemList_DownloadableUser}">
<f:facet name="header">
<h:selectBooleanCheckbox styleClass="checkbox" immediate="true" id="headerCheckBox"
onclick="toggleElementCheckboxes(this, this.checked)"/>
</f:facet>
<h:selectBooleanCheckbox value="#{item.selected}" title="#{item.object.itemIdentifier.gtin}" styleClass="checkbox"
id="rowCheckBox"
disabled="#{(itemList_subProfileView and itemList_subProfRestr) or item.acctAccess == 'N'}"/>
</h:column>
........
</rich:dataTable>
--
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
14 years, 10 months
[JBoss JIRA] Created: (RF-2516) Drag-n-Drop Tree with Context Menu
by Ralf Loechte (JIRA)
Drag-n-Drop Tree with Context Menu
----------------------------------
Key: RF-2516
URL: http://jira.jboss.com/jira/browse/RF-2516
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.4, 3.2.0
Reporter: Ralf Loechte
I have a rich:tree with drag-n-drop support and an attached rich:contextMenu to the nestet rich:treeNode. if you click left on a node, the contectMenu will open. After click on the
<rich:treeNode
type="member"
dragType="member"
dragValue="#{item}"
acceptedTypes="member">
<h:outputText value="#{item.name}" />
<rich:dndParam name="label" type="drag" value="#{item.name}" />
<rich:contextMenu event="oncontextmenu" attached="true"
submitMode="ajax">
<rich:menuItem value="Ausschneiden" limitToList="true"
reRender="treehierarchypanel"
disabled="#{!olapAdminMainBean.editMode}"
actionListener="#{hierarchyMainBean.processCutElement}">
</rich:menuItem>
--
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
14 years, 11 months