[Gelöst] Lookup-Feld per Script setzen

26. März 2010 15:57

Hallo zusammen!

Ich habe ein Formular, in dem es ein Lookup-Feld zur Firma gibt. Dieses möchte ich aus der Onload-Funktion heraus befüllen. Die ID der Firma habe ich, nur weiß ich nicht, wie die Syntax lautet, um diese in das Lookup-Feld einzutragen. Kann mir da jemand einen Tipp geben? Oder muss ich das vielleicht ganz anders angehen?

Vielen Dank!

Gruß,
Daniel
Zuletzt geändert von DanP am 26. März 2010 17:10, insgesamt 1-mal geändert.

Re: Lookup-Feld per Script setzen

26. März 2010 17:10

Hallo!

Habs selbst herausgefunden:

Code:
//Create an array to set as the DataValue for the lookup control.
var lookupData = new Array();
//Create an Object add to the array.
   var lookupItem= new Object();
//Set the id, typename, and name properties to the object.
   lookupItem.id = '{1AAC1363-01A1-DB11-8432-0003FF9CE217}';
   lookupItem.typename = 'account';
   lookupItem.name = 'A Bike Store';
// Add the object to the array.
   lookupData[0] = lookupItem;
// Set the value of the lookup field to the value of the array.
   crmForm.all.parentaccountid.DataValue = lookupData;


Trotzdem danke!

Gruß,
Daniel