我想在jhipster生成的应用程序中禁用模态对话框,以支持页面中显示的元素。
请参阅https://github.com/jhipster/generator-jhipster/issues/2693
答案 0 :(得分:2)
你应该像#34; -detail"就在上面。像
一样做一个块views: {
'content@': {
templateUrl: 'app/entities/smthn/smthn-dialog.html',
controller: 'SmthnDialogController',
controllerAs: 'vm'
}
},
在data
对象之后将resolve
移出$uibModal.open
。
然后你的控制器发生了一些变化。
使clear
函数看起来像这样:
function clear () {
$state.go('^');
}
并将$uibModalInstance.close(result);
替换为$state.go('smthn', {}, { reload: 'smthn' });
中的onSaveSuccess
。