[richfaces-issues] [JBoss JIRA] Updated: (RF-11143) more than one inputNumberSlider rendered using ajax call first component responds to the input, subsequent component does not respond to input

Krishna Ramaiah (JIRA) jira-events at lists.jboss.org
Sat Jul 23 03:34:23 EDT 2011


     [ https://issues.jboss.org/browse/RF-11143?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Krishna Ramaiah updated RF-11143:
---------------------------------

    Steps to Reproduce: 
<!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:h="http://java.sun.com/jsf/html"
	xmlns:f="http://java.sun.com/jsf/core"
	xmlns:ui="http://java.sun.com/jsf/facelets"
	xmlns:a4j="http://richfaces.org/a4j"
	xmlns:rich="http://richfaces.org/rich">



<ui:composition>
  <ui:include src="../common/main.xhtml " />
	<f:view id="view1">
		<h:form id="form1">
			<a4j:outputPanel id="op_discovery">
				<table>
					<a4j:commandLink action="#{fanProfileBean.actionGetTrackByGroupie}"
						value="add" render="fav_hdr_repeat" />
				</table>
				
			</a4j:outputPanel>

				<table bgcolor="silver" width="100%">
					<tr>
					    <rich:dataTable value="#{fanProfileBean.favoriteHdrList}"
					     var="favHdrObj" rowKeyVar="rowHdr" id="fav_hdr_repeat">
					      <rich:column>
					         <h:outputText value="#{favHdrObj.groupName}" />
					         <a4j:outputPanel id="group_col">
					         <table>
					         <tr>
					         <a4j:repeat value="#{favHdrObj.favoriteDtlVoList}"  var="dtlObj" id="rpt" rows="7">
					             <td>
					               <h:outputText value="#{dtlObj.trackName}" />
					             </td>
					         </a4j:repeat>
					         </tr>
					         </table>
					         
					         <rich:inputNumberSlider maxValue="10" >
					         </rich:inputNumberSlider>
					         </a4j:outputPanel>
							</rich:column>
					    </rich:dataTable>
					</tr>
				</table>

		</h:form>


	</f:view>
</ui:composition>
</html>


  was:
<!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:h="http://java.sun.com/jsf/html"
	xmlns:f="http://java.sun.com/jsf/core"
	xmlns:ui="http://java.sun.com/jsf/facelets"
	xmlns:a4j="http://richfaces.org/a4j"
	xmlns:rich="http://richfaces.org/rich">



<ui:composition>
  <ui:include src="../common/main.xhtml " />
	<f:view id="view1">
		<h:form id="form1">
			<a4j:outputPanel id="op_discovery">
				<table>
					<a4j:commandLink action="#{fanProfileBean.actionGetTrackByGroupie}"
						value="add" render="fav_hdr_repeat,ds" />
				</table>
				
			</a4j:outputPanel>

				<table bgcolor="silver" width="100%">
					<tr>
					    <rich:dataTable value="#{fanProfileBean.favoriteHdrList}"
					     var="favHdrObj" rowKeyVar="rowHdr" id="fav_hdr_repeat">
					      <rich:column>
					         <h:outputText value="#{favHdrObj.groupName}" />
					         <a4j:outputPanel id="group_col">
					         <table>
					         <tr>
					         <a4j:repeat value="#{favHdrObj.favoriteDtlVoList}"  var="dtlObj" id="rpt" rows="7">
					             <td>
					               <h:outputText value="#{dtlObj.trackName}" />
					             </td>
					         </a4j:repeat>
					         </tr>
					         </table>
					         
					         <!--  
					         <rich:dataScroller id="ds" for="rpt" render="group_col"/>
					         -->
					         <rich:inputNumberSlider maxValue="10" >
					           <a4j:ajax event="onslide" >
					           </a4j:ajax>
					         </rich:inputNumberSlider>
					         </a4j:outputPanel>
							</rich:column>
					    </rich:dataTable>
					</tr>
				</table>

		</h:form>


	</f:view>
</ui:composition>
</html>




> more than one inputNumberSlider rendered using ajax call first component responds to the input, subsequent component does not respond to input
> ----------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: RF-11143
>                 URL: https://issues.jboss.org/browse/RF-11143
>             Project: RichFaces
>          Issue Type: Bug
>      Security Level: Public(Everyone can see) 
>    Affects Versions: 4.0.0.Final
>         Environment: Windows , IE8.0
>            Reporter: Krishna Ramaiah
>
> inputNumberSlider is dynamically rendered on click of a button using a4j: repeat. The first component responds to input. subsequent component does not respond to input. In rich faces 3.3.x it is working fine

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the richfaces-issues mailing list