J'ai le HTML suivant :
<table id="MwDataList" class="data" width="100%" cellspacing="10px">
....
<td class="centerText" style="height: 56px;">
<input id="selectRadioButton" type="radio" name="selectRadioGroup">
</td>
....
</table>
En d'autres termes, j'ai un tableau avec quelques lignes, dans chaque ligne de la dernière cellule, j'ai un bouton radio. Comment puis-je obtenir la ligne parente pour le bouton radio sélectionné ?
Ce que j'ai essayé :
function getSelectedRowGuid() {
var row = $("#MwDataList > input:radio[@name=selectRadioGroup]:checked :parent tr");
var guid = GetRowGuid(row);
return guid;
}
Mais il semble que ce sélecteur est incorrect.