Skip to content

Commit b0d874e

Browse files
authored
Merge pull request #4604 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to master to sync with https://github.com/MicrosoftDocs/powerapps-docs (branch main)
2 parents 30ef94b + 592af09 commit b0d874e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

powerapps-docs/developer/model-driven-apps/clientapi/reference/grids/gridentity.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ GridEntity is returned by the [GridRowData](gridrowdata.md).[getEntity](gridrowd
2424
```JavaScript
2525
var myRows = gridContext.getGrid().getRows();
2626
var myRow = myRows.get(arg);
27-
var gridEntity = myRow.getData().getEntity();
27+
var gridEntity = myRow.data.entity;
2828
```
2929

3030
GridEntity also supports the **columns** collection that provides methods of working with a collection of columns for a table in the editable grid. Each column ([GridAttribute](gridattribute.md)) represents the data in the cell of an editable grid, and contains a reference to all the cells associated with the column. See [Collections (Client API reference)](../collections.md) for information on the methods available to access data in a collection.
@@ -49,4 +49,4 @@ GridEntity also supports the **columns** collection that provides methods of wor
4949

5050

5151

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

powerapps-docs/developer/model-driven-apps/clientapi/reference/grids/gridrowdata.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ GridRowData also provides methods for retrieving information specific to a recor
2626
```JavaScript
2727
var myRows = gridContext.getGrid().getRows();
2828
var myRow = myRows.get(arg);
29-
var gridRowData = myRow.getData();
29+
var gridRowData = myRow.data;
3030
```
3131

3232
## Properties
@@ -45,4 +45,4 @@ var gridRowData = myRow.getData();
4545

4646

4747

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

0 commit comments

Comments
 (0)