0
私はテレビ番組表を持つテーブルを持っています。私はdir-paginate/ng-repeat
とテーブルを作成し、私はショーを編集できるようにモーダルを開くために行をクリックすることができますが、ngモデルのデータは、そのモーダル内のテキストボックスに読み込まれていません。ngModelでモーダルテキストボックスが表示されない
<tr id='schedule_row' class='hover_click_cell' dir-paginate='tv_show in tv_shows | orderBy:sortType:sortReverse | itemsPerPage:10'>
<td class='center_text clickable_cell cell_width' ng-click='alter_show(tv_show)'>{{tv_show.show_name}}</td>
クリックすると、それはデータをJSON形式でこのようなルックスを通過したalter_show()
$scope.alter_show = function(show)
{
$scope.edit_show = show;
var modalInstance = $uibModal.open ({ animation: $controller.animationsEnabled,
ariaLabelledBy: 'modal-title',
ariaDescribedBy: 'modal-body',
templateUrl: 'edit_tv_show.html',
controller: 'EditTvShowCtrl',
controllerAs: '$controller',
size: 'sm',
backdrop: 'static',
keyboard: false
});
modalInstance.result.then(function (action)
{
},
function() {
});
}
関数を呼び出します。
{"watched":false,"id":1,"show_name":"The Walking Dead","season":1,"episode":1,"season_episode":"Season 1, Episode 1","$$hashKey":"object:4"}
私はショーの詳細を渡し、それを設定します$scope.edit_show
オブジェクトです。渡されるデータは空ではありませんが、モーダルが開かれると、テキストボックスにはデータが入力されません。これらは入力ボックスです。
$scope.edit_show = {
show_name: '',
season: 0,
episode: 0,
watched: 0
};
<div class='form-group'>
<label for='show_name'>Show Name:</label>
<input type='text' class='form-control' id='edit_show_name' ng-model='edit_show.show_name'>
</div>
<div class='form-group'>
<label for='season'>Season:</label>
<input type='number' class='form-control' id='edit_season' ng-model='edit_show.season'>
</div>
クリックした行の詳細をテキストボックスに入力するにはどうすればよいですか?
テキストボックスに値が入力されていないか、値がバインドされていませんか? –