andlio

Untitled

May 11th, 2012
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function(mocs){
  2.     Array.forEach(mocs, function(mocObj, mocIdx){
  3.         _this.mocsSelect.addOption({"label": mocObj.name, "value": mocObj.id});
  4.         console.log("label:" + mocObj.name + " ; value:" + mocObj.id);
  5.     });
  6.    
  7.     // Default selection
  8.     if(_this.formObject && _this.formObject.mocId > 0){
  9.         _this.mocsSelect.set("value", 741);
  10.     }
  11.    
  12. }
Advertisement
Add Comment
Please, Sign In to add comment