Browse Source

Adding a set function to crfRoleSelector

Andrej Studen 1 year ago
parent
commit
2771f3928a
1 changed files with 9 additions and 0 deletions
  1. 9 0
      web/crf/crfRoleSelector.js

+ 9 - 0
web/crf/crfRoleSelector.js

@@ -70,3 +70,12 @@ function(){
       return null;
    return this.roleSelect.value;
 }
+
+crfRoleSelector.setRoleAndSite=
+function(roleAndSite,cb=null){
+   if (!roleAndSite) return;
+   this.roleSelect.value=roleAndSite;
+   if (cb) cb();
+}
+   
+