[JBoss JIRA] Created: (RF-4504) context menu not visible inside scrollabledatable using FF3, Safari, Chrome.
by Maier M????ller (JIRA)
context menu not visible inside scrollabledatable using FF3, Safari, Chrome.
----------------------------------------------------------------------------
Key: RF-4504
URL: https://jira.jboss.org/jira/browse/RF-4504
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.2
Environment: JBoss AS 4.2.2, Richfaces 3.2.2
Reporter: Maier M????ller
Using a context menu inside a scrollabledatatable the context menu is hidden behind the rows of the scrollabledatatable.
Example Code:
<h:form id="testform">
<rich:contextMenu attached="false" id="menu" submitMode="ajax">
<rich:menuItem ajaxSingle="true">
<b>{car} {model}</b> details
<a4j:actionparam name="det" assignTo="#{ddmenu.current}" value="{car} {model} details"/>
</rich:menuItem>
<rich:menuGroup value="Actions">
<rich:menuItem ajaxSingle="true">
Put <b>{car} {model}</b> To Basket
<a4j:actionparam name="bask" assignTo="#{ddmenu.current}" value="Put {car} {model} To Basket"/>
</rich:menuItem>
<rich:menuItem value="Read Comments" ajaxSingle="true">
<a4j:actionparam name="bask" assignTo="#{ddmenu.current}" value="Read Comments"/>
</rich:menuItem>
<rich:menuItem ajaxSingle="true">
Go to <b>{car}</b> site
<a4j:actionparam name="bask" assignTo="#{ddmenu.current}" value="Go to {car} site"/>
</rich:menuItem>
</rich:menuGroup>
</rich:contextMenu>
<h:panelGrid columns="2" columnClasses="top, top">
<rich:scrollableDataTable rowKeyVar="rkv" frozenColCount="1"
height="400px" width="700px" id="carList" rows="40"
columnClasses="col" value="#{dataTableScrollerBean.allCars}"
var="car" sortMode="single"
>
<rich:column id="make">
<f:facet name="header">
<h:outputText styleClass="headerText" value="Make" />
</f:facet>
<h:outputText value="#{car.make}" />
</rich:column>
<rich:column id="model">
<f:facet name="header">
<h:outputText styleClass="headerText" value="Model" />
</f:facet>
<h:outputText value="#{car.model}" />
</rich:column>
<rich:column id="price">
<f:facet name="header">
<h:outputText styleClass="headerText" value="Model" />
</f:facet>
<h:outputText value="#{car.model}" />
</rich:column>
<rich:componentControl event="onRowClick" for="menu" operation="show">
<f:param value="#{car.model}" name="model" />
<f:param value="#{car.make}" name="car" />
</rich:componentControl>
</rich:scrollableDataTable>
<a4j:outputPanel ajaxRendered="true">
<rich:panel>
<f:facet name="header">Last Menu Action</f:facet>
<h:outputText value="#{ddmenu.current}"></h:outputText>
</rich:panel>
</a4j:outputPanel>
</h:panelGrid>
</h:form>
--
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
15 years, 9 months
[JBoss JIRA] Created: (RF-4988) scrollableDataTable: the last row isn't shown in case rows attribute is setted(seam 2.0.2.GA, richfaces 3.3.0-SNAPHOT)
by Mikhail Vitenkov (JIRA)
scrollableDataTable: the last row isn't shown in case rows attribute is setted(seam 2.0.2.GA, richfaces 3.3.0-SNAPHOT)
----------------------------------------------------------------------------------------------------------------------
Key: RF-4988
URL: https://jira.jboss.org/jira/browse/RF-4988
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Environment: Jboss 4.2.GA, seam 2.0.2.GA, richfaces 3.3.0-SNAPSHOT, browsers:FF 3.0, IE 6,7, Safari 3.1, Opera 9.5x
Reporter: Mikhail Vitenkov
Assignee: Nick Belaevski
#1. Set rows attribute to value less than size of ArrayList<any type> defined in "value" scrollableDataTable(SDT) attribute. SDT value should have 6 records.
#2. Use following code:
<rich:scrollableDataTable
rowKeyVar="rkv" headerClass="DataTableHeader"
columnClasses="DataTableColumnsOdd, DataTableColumnsEven"
height="190px" width="960px" id="prpList" rows="5"
value="#{beanList}" var="prpty" reRender="prpList"
hideWhenScrolling="true">
#3. Navigate to the page & make SDT scroll down.
#4. Verify the last record appearence.
Actual behavior:
The last record isn't brought back.
--
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
15 years, 9 months