0
チェックボックスでテーブルの行を選択する必要があります。角度ジェスを初めて知っているので、divに選択した行の値を表示してくださいどのようにそれを行うことができます。 フィルタオプションを使用しようとしましたが、うまくいきませんでした。チェックボックスでテーブルの行の値を選択し、anglejのdivで選択した値を表示
私のコード事前に
<table ng-show="ad_tabl==1" id="data" border="1" class="table table-striped responsive-utilities jambo_table bulk_action" >
<thead>
<tr class="headings">
<th><input type="checkbox" class=""/></th>
<th>Index X 10 table1</th>
<th>Steps</th>
<th>Distance(ft)</th>
<th>Distance....(m)</th></th>
</tr>
</thead>
<tbody>
<tr ng-repeat="ad1 in action_distance" >
<td class="a-center ">
<input ng-model="ad1.index" type="checkbox" class="tableflat_ad"/>
</td>
<td>{{ad1.index}}</td>
<td>{{ad1.steps}}</td>
<td>{{ad1.distance_ft}}</td>
<td>{{ad1.distance_m}}</td>
</tr>
</tbody>
</table>
<div>
//////// show row selected value here ///////////
</div>
var app = angular.module('formExample', [])
.controller('ExampleController', ['$scope', function($scope) {
$scope.action_distance = [
{
index:"0",
steps: "<=2 in.(5cm.)",
distance_ft: "",
distance_m: "",
},{
index: "1",
steps: "Within Reach",
distance_ft: "",
distance_m: "",
},{
index: "3",
steps: "1-2 Steps",
distance_ft: "",
distance_m: "",
}
];
}]);
感謝。
我々はNGリピートを使用してテーブルを作成する必要があります我々はdiv要素やラベル – rohan
上で直接それを表示することができない理由はい、あなたはまた、div要素も – Pravin