Nóta
Aðgangur að þessari síðu krefst heimildar. Þú getur prófað aðskrá þig inn eða breyta skráasöfnum.
Aðgangur að þessari síðu krefst heimildar. Þú getur prófað að breyta skráasöfnum.
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}");
}