我正在创建一个DYNAMIC表,我想调用一个JavaScript(通过点击)函数来获取一个确定的单元格的值。问题是我试图使用输入隐藏来获取值,这总是得到第一个表的第一个值。
如何获取确定单元格的值。
我的代码是下一个:
<apex: repeat ....>
<apex:pageBlockTable value="{!block}" var="document" id="docList">
<apex:column headerValue="NameHeader">
<apex:commandLink value="{!document.Nombre_doc_adjuntos__c}" id="checkfunction" onclick="jsFunction();" >
<input type="hidden" class="DocClass" id="AttDocClass" name="AttDocClass" value="{!document.id}" />
</apex:commandLink>
</apex:column>
</apex:pageBlockTable>
</apex:repeat>
那么如何获取动态表的值,而不是获取第一个表的第一个值?
干杯
答案 0 :(得分:0)
您可以使用jQuery读取值并填充隐藏的输入字段。