2016-04-06 15 views
0

私は、アレイ・バーの行がグループを持っている配列複数のラジオボタングループ

<table class="table"> 
<thead> 
    <tr> 
     <th>Group</th> 
     <th>Select</th> 
    </tr> 
</thead> 
<tr ng-repeat="foo in bars"> 
    <td>{{foo.Group}}</td> 
    <td><input type="radio" name="foo.Group" ng-model="foo.Field1"/></td> 
</tr> 

からの表示データを表示するには、NG-繰り返して使用していたHTMLテーブルを持っていますフィールド。グループごとに唯一のラジオボタンを選択します。

すべてのサポートをよろしくお願いいたします。

+0

助けてもらえますか?http://stackoverflow.com/questions/36244427/angular-js-inputradio-doesnt-work/36244545#36244545 –

答えて

-1

グループを適切に割り当てるには、name属性に中カッコが不足しているように見えます。

<table class="table"> 
<thead> 
    <tr> 
     <th>Group</th> 
     <th>Select</th> 
    </tr> 
</thead> 
<tr ng-repeat="foo in bars"> 
    <td>{{foo.Group}}</td> 
    <td><input type="radio" name="{{foo.Group}}" ng-model="foo.Field1"/></td> 
</tr> 
関連する問題