我在我的项目中使用ngDialog和我的范围内的数据。我有一个名为popupConge的范围对象,我链接到ngDialog的数据:
ngDialog.open({
template: 'saisieCongeModalPanel',
className: 'ngdialog-theme-default width800',
data: $scope.popupConge,
scope: $scope,
});
问题在于,当我更新$ scope.popupConge时,我的模态面板中的数据不会更新。
例如,我在ngDialog中有:<input type="text" id="motif" ng-model="ngDialogData.conge.motif"/>
。当我更新$ scope.popupConge.conge.motif时,输入字段不会更新:s
我做错了吗?
谢谢!
答案 0 :(得分:0)
由于您将$scope
传递给对话框,因此您应该使用popupConge.conge.motif
。
试试这个。
<input type="text" id="motif" ng-model="popupConge.conge.motif"/>