You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: powerapps-docs/developer/component-framework/implementing-controls-using-typescript.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -315,6 +315,11 @@ Developers and app makers can define their styling to represent their code compo
315
315
</resources>
316
316
```
317
317
318
+
> [!NOTE]
319
+
> Power Apps component framework uses the concept of implementing String(resx) web resources that is used to manage the localized strings shown on any user interface. More information: [String(Resx) web resources](https://docs.microsoft.com/dynamics365/customerengagement/on-premises/developer/resx-web-resources).
320
+
> See [Localization API](sample-controls/localization-api-control.md) sample, to learn how to localize code components using `resx` web resources.
321
+
322
+
318
323
## Build your code components
319
324
320
325
After you finish adding manifest, component logic, and styling, build the code components using the command:
Copy file name to clipboardExpand all lines: powerapps-docs/developer/model-driven-apps/clientapi/reference/Xrm-Utility/lookupObjects.md
+27-2Lines changed: 27 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,9 +38,34 @@ search.app:
38
38
|searchText|String|No|Indicates the default search term for the lookup control. This is supported only on [Unified Interface](https://docs.microsoft.com/power-platform/admin/about-unified-interface).|
39
39
|showBarcodeScanner|Boolean|No|Indicates whether the lookup control should show the barcode scanner in mobile clients.|
40
40
|viewIds|Array|No|The views to be available in the view picker. Only system views are supported.|
41
-
|successCallback |Function |Yes |A function to call when the lookup control is invoked. An array of objects with the following properties is passed:<br/><ul><li>**entityType**: String. Entity type of the record selected in the lookup control.</li><li>**id**: String. ID of the record selected in the lookup control.</li><li>**name**: String. Name of the record selected in the lookup control.</li>|
42
-
|errorCallback |Function |Yes |A function to call when you cancel the lookup control or the operation fails. |
43
41
42
+
**successCallback**: Function. A function to call when the lookup control is invoked. An array of objects with the following properties is passed:<br/><ul><li>**entityType**: String. Entity type of the record selected in the lookup control.</li><li>**id**: String. ID of the record selected in the lookup control.</li><li>**name**: String. Name of the record selected in the lookup control.</li></ul>
43
+
44
+
45
+
**errorCallback**: Function. A function to call when you cancel the lookup control or the operation fails.
0 commit comments