-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathControlManifest.Input.xml
More file actions
46 lines (40 loc) · 1.41 KB
/
Copy pathControlManifest.Input.xml
File metadata and controls
46 lines (40 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0" encoding="utf-8"?>
<manifest>
<control namespace="XRMatic" constructor="LookupFieldQuickViewControl" version="1.0.0"
display-name-key="LookupFieldQuickViewControl_DisplayName"
description-key="LookupFieldQuickViewControl_Description"
control-type="virtual">
<external-service-usage enabled="false" />
<!--
LookupField: the bound lookup property that this control replaces.
Bind this to the lookup column on the form.
-->
<property
name="LookupField"
display-name-key="LookupField_DisplayName"
description-key="LookupField_Description"
of-type="Lookup.Simple"
usage="bound"
required="true" />
<!--
QuickViewFormId: GUID of the Dynamics 365 quick view form to open
when the user clicks the quick-view icon.
-->
<property
name="QuickViewFormId"
display-name-key="QuickViewFormId_DisplayName"
description-key="QuickViewFormId_Description"
of-type="SingleLine.Text"
usage="input"
required="false" />
<resources>
<code path="index.js" order="1" />
<!-- React and Fluent UI v8 are provided by the platform at runtime -->
<platform-library name="React" version="16.8.6" />
<platform-library name="Fluent" version="8.29.0" />
</resources>
<feature-usage>
<uses-feature name="WebAPI" required="false" />
</feature-usage>
</control>
</manifest>