Skip to content

Commit cd2f026

Browse files
authored
Live publish
2 parents 5e3c08c + 45172b3 commit cd2f026

File tree

5 files changed

+18
-14
lines changed

5 files changed

+18
-14
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ contributors:
2222

2323
# Create a blank canvas app from scratch
2424

25-
In Power Apps, create a blank canvas app that you can then use to customize further with the with data from additional data sources, or by using collections.
25+
In Power Apps, create a blank canvas app that you can then use to customize further with data from additional data sources, or by using collections.
2626

2727
If you're not signed up for Power Apps, [sign up for free](https://make.powerapps.com?utm_source=padocs&utm_medium=linkinadoc&utm_campaign=referralsfromdoc) before you start.
2828

powerapps-docs/maker/canvas-apps/create-responsive-layout.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -235,18 +235,22 @@ You can adjust your layout based on the size of the device. The screen's **Size*
235235

236236
Use these sizes to make decisions about your app's layout. For example, if you want a control to be hidden on a phone-sized device but visible otherwise, you could set the control's **Visible** property to this formula:
237237

238-
`Parent.Width >= ScreenSize.Medium`
238+
```powerapps-dot
239+
Parent.Size >= ScreenSize.Medium
240+
```
239241

240242
This formula evaluates to **true** when the size is medium or larger and **false** otherwise.
241243

242244
If you want a control to occupy a different fraction of the screen width based on the screen size, set the control's **Width** property to this formula:
243245

244246
```powerapps-dot
245-
Parent.Width *
246-
    Switch(Parent.Width,
247-
        ScreenSize.Small, 0.5,
248-
        ScreenSize.Medium, 0.3,
249-
        0.25)
247+
Parent.Width *
248+
Switch(
249+
Parent.Size,
250+
ScreenSize.Small, 0.5,
251+
ScreenSize.Medium, 0.3,
252+
0.25
253+
)
250254
```
251255
This formula sets the control's width to half of the screen width on a small screen, three-tenths of the screen width on a medium screen, and a quarter of the screen width on all other screens.
252256

@@ -269,4 +273,4 @@ The authoring canvas doesn't respond to the sizing formulas created. To test res
269273
If you write expressions or formulas in the **X**, **Y**, **Width**, and **Height** properties of a control, you'll overwrite those expressions or formulas if you later drag the control to a different ___location or resize the control by dragging its border.
270274

271275

272-
[!INCLUDE[footer-include](../../includes/footer-banner.md)]
276+
[!INCLUDE[footer-include](../../includes/footer-banner.md)]

powerapps-docs/maker/canvas-apps/functions/function-patch.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ contributors:
2121

2222
Modifies or creates one or more [records](../working-with-tables.md#records) in a [data source](../working-with-data-sources.md), or merges records outside of a data source.
2323

24-
Use the **Patch** function to modify records in complex situations. Such as, when you do updates that require no user interaction or use forms that span multiple screens.
24+
Use the **Patch** function to modify records in complex situations, such as when you do updates that require no user interaction or use forms that span multiple screens.
2525

2626
To update records in a data source more easily for simple changes, use the **Edit form** control instead. When you add an **Edit form** control, you provide users with a form to fill in and then save the changes to a data source. For more information, see [Understand data forms](../working-with-forms.md).
2727

@@ -256,4 +256,4 @@ To learn more about the usage of **As** operator and **ThisRecord** see **[Opera
256256

257257

258258

259-
[!INCLUDE[footer-include](../../../includes/footer-banner.md)]
259+
[!INCLUDE[footer-include](../../../includes/footer-banner.md)]

powerapps-docs/maker/canvas-apps/get-started-create-from-blank.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ For more information about these and other functions, see the [formula reference
212212
213213
`SubmitForm(EditForm1); Navigate(ViewScreen, ScreenTransition.None)`
214214
215-
When the user selects this icon, any changes that the user made is this screen are saved, and the view screen opens.
215+
When the user selects this icon, any changes that the user made in this screen are saved, and the view screen opens.
216216
217217
1. On the **Insert** tab, select **Icons**, and then select the **Trash** icon.
218218
@@ -260,4 +260,4 @@ For more information about these and other functions, see the [formula reference
260260
- [Link this app to a solution](add-app-solution.md) so that you can, for example, deploy it to a different environment or publish it on AppSource.
261261
262262
263-
[!INCLUDE[footer-include](../../includes/footer-banner.md)]
263+
[!INCLUDE[footer-include](../../includes/footer-banner.md)]

powerapps-docs/teams/make-ideas-editable-by-original-creator.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ Now, we'll add a container that will include the idea details section on our ide
269269
| Name | conIdeaEditPane |
270270
| X | 300 |
271271
| Y | comHeader_CampaignDetail_EditScreen.Y + comHeader_CampaignDetail_EditScreen.Height |
272-
| Width | Parent.Width - conCampaignDetailNav_1.Width |
272+
| Width | Parent.Width - conCampaignDetailNav_EditScreen.Width |
273273
| Height | Parent.Height - Self.Y |
274274
275275
1. Add another container inside this new container using the steps above.
@@ -691,4 +691,4 @@ Finally, let’s test the app and try editing an idea.
691691
- [Sample apps FAQs](sample-apps-faqs.md)
692692
- [Use sample apps from the Teams store](use-sample-apps-from-Teams-store.md)
693693
694-
[!INCLUDE[footer-include](../includes/footer-banner.md)]
694+
[!INCLUDE[footer-include](../includes/footer-banner.md)]

0 commit comments

Comments
 (0)