html:
html:
js:
function(data,config){
//处理错误
//do nothing
}
);
//change
$scope.mySelectControllerChange=function(){
var app=angular.module('activitiModeler',[]);
if($scope.myField.optionGroupId!=null && $scope.myField.optionGroupId!=''){
//有optionGroup
console.log('if');
$rootScope.relationList = [{id:0,name:'等于'},{id:1,name:'不等于'},{id:2,name:'包含'}];
}else{
//没有optionGroup
console.log('else');
$rootScope.relationList = [{id:0,{id:3,name:'大于'},{id:4,name:'小于'},{id:5,name:'小于等于'},{id:6,name:'大于等于'},name:'包含'}];
}
}
}
];
}]);
/关系符/
angular.module('activitiModeler').controller('myRelationController',$window) {
$scope.myRelationDisableVar=true;
$scope.objDisableTrue=true;//加上灰背景
//接收事件-根据字段显示下拉
$scope.$on('to_myRelationController_on_myColumnSelectModel_change',data){
if(data.pa!=''){
$scope.myRelationDisableVar=false;
$scope.objDisableTrue=false;//去掉灰背景
if(data.pb!=null && data.pb!=''){
//有optionGroup
$scope.relationList = [{id:0,name:'包含'}];
}else{
//没有optionGroup
$scope.relationList = [{id:0,name:'包含'}];
}
}else{
$scope.relationList=null;
$scope.myRelationDisableVar=true;
$scope.objDisableTrue=true;//加上灰背景
}
});
}]);
以上这篇Angularjs 根据一个select的值去设置另一个select的值方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。
原文链接:https://www.f2er.com/js/31018.html