Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typos and Formatting Corrections #2098

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion power-platform/guidance/creator-kit/calendar.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ To make calls to the input event, you can set a context variable that is bound t
Example Power Fx formula:

```vb
UpdateContext({ctxResizableTextareaEvent:"SetFocus" & Text(Rand())}));
UpdateContext({ctxResizableTextareaEvent:"SetFocus" & Text(Rand())});
```

The context variable `ctxResizableTextareaEvent` would then be bound to the property `InputEvent` property.
Expand Down
2 changes: 1 addition & 1 deletion power-platform/guidance/creator-kit/commandbar.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ To make calls to the input event, you can set a context variable that is bound t

Example Power Fx formula:
```powerapps-dot
UpdateContext({ ctxResizableTextareaEvent:"SetFocus" & Text(Rand()) }));
UpdateContext({ ctxResizableTextareaEvent:"SetFocus" & Text(Rand()) });
```

The context variable `ctxResizableTextareaEvent` would then be bound to the property Input Event property.
Expand Down
2 changes: 1 addition & 1 deletion power-platform/guidance/creator-kit/contextmenu.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ To make calls to the input event, you can set a context variable that is bound t
E.g.

```vb
UpdateContext({ctxResizableTextareaEvent:"SetFocus" & Text(Rand())}));
UpdateContext({ ctxResizableTextareaEvent:"SetFocus" & Text(Rand()) });
```

The context variable `ctxResizableTextareaEvent` would then be bound to the property `Input Event` property.
Expand Down
2 changes: 1 addition & 1 deletion power-platform/guidance/creator-kit/nav.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ To make calls to the input event, you can set a context variable that is bound t
E.g.

```powerapps-dot
UpdateContext({ctxResizableTextareaEvent:"SetFocus" & Text(Rand())}));
UpdateContext({ ctxResizableTextareaEvent:"SetFocus" & Text(Rand()) });
```

The context variable `ctxResizableTextareaEvent` would then be bound to the property `Input Event` property.
Expand Down
2 changes: 1 addition & 1 deletion power-platform/guidance/creator-kit/taglist.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Table(
ItemDisplayName: "Power Apps",
ItemKey: "1",
ItemEnabled: true,
ItemChecked: true,
ItemChecked: true,
ItemIconName: "Powerapps",
ItemIconColor: "purple",
ItemTextColor: "purple",
Expand Down