'rgExpandCol'という名前の次のクラスを持つtdがあり、その中の入力のクラスを変更したいと思います。以下は私のhtmlです:
<tr>
<td class="rgExpandCol">
<input class="rgExpand" ...
</td>
<tr>
このjqueryを試しましたが、$ findがnullになります:
$(this).closest('td').attr('rgExpand', 'rgCollapse');
編集 :::
基本的に、を使用radgrid
して非表示になっている行を使用および拡張しています
$(this).closest('tr').next('tr').css('display', '');
そして$(this)はグリッドの私のクリックイベントにあります
$("#<%=gv.ClientID%> tr:has(td)").click(function (e) {