私のasp.net MVC 3
アプリケーションではJqgrid
、グリッドとして使用しています。チェックボックスが含まれていて、私は以下のようにイベントを管理しました
$("#list").find('input[type=checkbox]').live('change', function () {
if ($(this).is(':checked')) {
var _row = $(this).parent().parent();
}
});
$(this).parent().parent()
したいを使用して行を取得しましたget the id of the _row
。IDを取得するにはどうすればよいですか?共有する方法はありますか