Napomena
Pristup ovoj stranici zahtijeva autorizaciju. Možete pokušati prijaviti se ili promijeniti direktorije.
Pristup ovoj stranici zahtijeva autorizaciju. Možeš pokušati promijeniti direktorije.
Sets the default view for the lookup control dialog box.
Control types supported
Lookup
Syntax
formContext.getControl(arg).setDefaultView(viewId);
Parameter
| Name | Type | Required | Description |
|---|---|---|---|
viewId |
String | Yes | The ID of the view to be set as the default view. |
Example
This setDefaultViewSample function will set the account form primary contact lookup default view to the My Active Contacts view.
function setDefaultViewSample(executionContext) {
var formContext = executionContext.getFormContext();
formContext.getControl("primarycontactid").setDefaultView("{00000000-0000-0000-00AA-000010001003}");
}