Skip to content

Commit c6526ce

Browse files
committed
2 parents d00039c + 80769f4 commit c6526ce

21 files changed

+258
-277
lines changed

.openpublishing.redirection.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"redirections": [
3+
{
4+
"source_path": "powerapps-docs/maker/canvas-apps/create-app-browser.md",
5+
"redirect_url": "getting-started",
6+
"redirect_document_id": true
7+
},
38
{
49
"source_path": "powerapps-docs/developer/common-data-service/xrm-tooling/use-xrm-tooling-classes-generated-code-generation-tool.md",
510
"redirect_url": "https://docs.microsoft.com/dynamics365/customer-engagement/developer/build-windows-client-applications-xrm-tools",

pending-deleted-files.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Pending deleted files tracking
2+
3+
This file tracks files marked for deletion. Localization requirements mean that topic file deletions need to be coordinated. See [Deleting or renaming topic files](https://review.docs.microsoft.com/en-us/bacx/delete-rename?branch=master) for more information.
4+
5+
## Files queued for deletion
6+
7+
These files have been redirected, but the actual .md topic files can't been removed yet.
8+
9+
These files have been redirected, and the .md topic files have been deleted. This list hasn't been provided to loc yet.
10+

powerapps-docs/developer/common-data-service/developer-tools.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
title: "<Topic Title> (Common Data Service for Apps) | Microsoft Docs" # Intent and product brand in a unique string of 43-59 chars including spaces
3-
description: "<Description>" # 115-145 characters including spaces. This abstract displays in the search result.
2+
title: "Developer tools and resources (Common Data Service for Apps) | Microsoft Docs"
3+
description: "Learn about available tools and resources when working with solutions."
44
ms.custom: ""
5-
ms.date: 10/31/2018
6-
ms.reviewer: ""
5+
ms.date: 1/31/2019
6+
ms.reviewer: "pehecke"
77
ms.service: "powerapps"
88
ms.topic: "article"
99
author: "shmcarth" # GitHub ID
@@ -15,10 +15,6 @@ search.app:
1515
- PowerApps
1616
- D365CE
1717
---
18-
<!-- The information about SDK assemblies should be found elsewhere
19-
Perhaps this topic should call out the available tools at a high level?
20-
Community tools should go here?
21-
https://docs.microsoft.com/en-us/dynamics365/customer-engagement/developer/developer-tools -->
2218

2319
# Developer tools and resources
2420

powerapps-docs/developer/common-data-service/webapi/samples/conditional-operations-client-side-javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ To run this sample, go to [Microsoft CRM Web API Conditional Operations Sample
8383
<h2>Instructions</h2>
8484
<p>
8585
Choose your preferences and run the JavaScript code.
86-
Use your browser's developer tools to view the output written to the console (e.g.: in IE11 or Edge,
86+
Use your browser's developer tools to view the output written to the console (e.g.: in IE11 or Microsoft Edge,
8787
press F12 to load the Developer Tools).
8888
</p>
8989
<form id="preferences">

powerapps-docs/developer/common-data-service/webapi/samples/functions-actions-client-side-javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ The WebAPIFunctionsAndActions.html web resource provides the context in which th
9898
<h2>Instructions</h2>
9999
<p>
100100
Choose your preferences and run the JavaScript code.
101-
Use your browser's developer tools to view the output written to the console (e.g.: in IE11 or Edge,
101+
Use your browser's developer tools to view the output written to the console (e.g.: in IE11 or Microsoft Edge,
102102
press F12 to load the Developer Tools).
103103
</p>
104104
<form id="preferences">

powerapps-docs/maker/canvas-apps/create-app-browser.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

powerapps-docs/maker/canvas-apps/functions/function-savedata-loaddata.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: powerapps
77
ms.topic: reference
88
ms.custom: canvas
99
ms.reviewer: anneta
10-
ms.date: 11/07/2015
10+
ms.date: 01/31/2019
1111
ms.author: gregli
1212
search.audienceType:
1313
- maker
@@ -22,9 +22,15 @@ The **SaveData** function stores a collection for later use under a name.
2222

2323
The **LoadData** function re-loads a collection by name that was previously saved with **SaveData**. You can't use this function to load a collection from another source.
2424

25-
**LoadData** doesn't create the collection; the function only fills an existing collection. You must first create the collection with the correct [columns](../working-with-tables.md#columns) by using **[Collect](function-clear-collect-clearcollect.md)**.
25+
Use these functions to improve app-startup performance by caching data in the **[App.OnStart](../controls/control-screen.md#additional-properties)** formula on a first run and then re-loading the local cache on subsequent runs. You can also use these functions to add [simple offline capabilities](../offline-apps.md) to your app.
2626

27-
Storage is encrypted and in a private ___location on the local device, isolated from other users and other apps.
27+
You can't use these functions inside a browser, either when authoring the app in PowerApps Studio or when running the app in the web player. To test your app, run it in PowerApps Mobile on an iPhone or Android device.
28+
29+
These functions are limited by the amount of available app memory because they operate on an in-memory collection. Available memory can vary depending on the device and operating system, the memory that the PowerApps player uses, and the complexity of the app in terms of screens and controls. If you store more than a few megabytes of data, test your app with expected scenarios on the devices on which you expect the app to run. You should generally expect to have between 30 and 70 megabytes of available memory.
30+
31+
**LoadData** doesn't create the collection; the function only fills an existing collection. You must first create the collection with the correct [columns](../working-with-tables.md#columns) by using **[Collect](function-clear-collect-clearcollect.md)**. The loaded data will be appended to the collection; use the **[Clear](function-clear-collect-clearcollect.md)** function first if you want to start with an empty collection.
32+
33+
Storage is encrypted and in a private ___location on the local device, isolated from other users and other apps.
2834

2935
## Syntax
3036
**SaveData**( *Collection*, *Name* )<br>**LoadData**( *Collection*, *Name* [, *IgnoreNonexistentFile* ])

0 commit comments

Comments
 (0)