File tree Expand file tree Collapse file tree 2 files changed +161
-178
lines changed
powerapps-docs/developer/component-framework Expand file tree Collapse file tree 2 files changed +161
-178
lines changed Original file line number Diff line number Diff line change @@ -91,17 +91,17 @@ Here are some common issues that you might come across while using the Power App
91
91
92
92
Use the dataset column name (component can get the dataset column name by searching the column array using the alias).
93
93
94
- ***Expected Behavior***
94
+ ***Expected Behavior***
95
95
96
- ```TypeScript
97
- long = dataSet.records[currentRecordId].getValue("Longitude") //based on property set in manifest"-122.3514661"
98
- ```
96
+ ```TypeScript
97
+ long = dataSet.records[currentRecordId].getValue("Longitude") //based on property set in manifest"-122.3514661"
98
+ ```
99
99
100
- ***Current Workaround***
100
+ ***Current Workaround***
101
101
102
- ```TypeScript
103
- lat = dataSet.records[currentRecordId].getValue("Address_x0020_1_x003a__x0020_Latitude")//based on the dataset column name
104
- ```
102
+ ```TypeScript
103
+ lat = dataSet.records[currentRecordId].getValue("Address_x0020_1_x003a__x0020_Latitude")//based on the dataset column name
104
+ ```
105
105
106
106
6 . **Power Apps component framework Datasets SharePoint issue**
107
107
You can’t perform that action at this time.
0 commit comments