var lookupData = new Array();
// Create an object to add to the array.
   var lookupItem= new Object();
// Set the id, typename, and name properties to the object.
     lookupItem.typename = 'transactioncurrency';
     lookupItem.name ="人民币"
// Add the object to the array.
   lookupData[0] = lookupItem;
  

// Set the value of the lookup field to the value of the array.
   crmForm.all.transactioncurrencyid.DataValue = lookupData;

相关文章:

  • 2022-12-23
  • 2021-12-09
  • 2022-12-23
  • 2021-12-19
  • 2022-02-08
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案