function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Marco antonio Vidal RamosMarco antonio Vidal Ramos 

Ayuda sobre el InputText

Hola amigos, alguien me podria ayudar a realizar lo siguiente, en mi formulario cuando ingreso un valor al inputText solo recupero 1 valor, necesito saber como puedo recuperar todos los valores que ingresas en los input.

        <apex:pageBlock title="Productos con Promocion de la Orden" id="ProdOrder">               
                <apex:pageBlockTable value="{!Productovista}" var="proc" align="Center" id="PageProdOrder">
                        <apex:column headerValue="Nombre del Producto" value="{!proc.Name}"/>
                        <apex:column headerValue="Codigo Producto" value="{!proc.CodigoProducto__c}"/>
                           <apex:column headerValue="Cantidad Comprada" value="{!proc.Cantidad__c}"/>
                        <apex:column headerValue="Cantidad Total a Regalar" value="{!proc.Cantidad_Promocion__c}"/>
                        <apex:column headerValue="Cantidad a Regalar">
                            <apex:inputText id="Canti_0" value="{!Canti}"/>
                        </apex:column>
                </apex:pageBlockTable>
                <apex:pageBlockButtons >
                    <apex:commandButton action="{!Confirm}" value="Confirmar"/>
                </apex:pageBlockButtons>
        </apex:pageBlock>

Agradeceria su ayuda compañeros, Saludos....