Hi,
I have an issue with PAD to select Radio Buttons with dynamic names, see below the HTML code.
Example the field "document_viewDetail_docId" is dynamic, so on each refresh there's a new docId number.
The only field that is static, is the "doc_filename" field, however this field is enclosed in a different <TD> tag.
Is there a way that I can refer to the "doc_filename" when selecting the radio button ?
<table class="resultTable">
<thead>
<tr>
<th class="ListTitle" style=""></th><th class="ListTitle" style="">Name Document</th></tr></thead>
<tbody>
<tr class="ListLine1">
<td>
<input type="radio" name="docId" id="document_viewDetail_docId1234" checked="checked" value="1234"><label for="document_viewDetail_docId1234">1234</label>
</td>
<td>
<div class="doc_filename">File1.pdf</div>
</td>
</tr><tr class="ListLine2">
<td>
<input type="radio" name="docId" id="document_viewDetail_docId4567" value="4567"><label for="document_viewDetail_docId4567">4567</label>
</td>
<td>
<div class="doc_filename">File2.pdf</div>
</td>