Skip to content

Commit 13b2da1

Browse files
committed
checkpoint
1 parent 2b3e57e commit 13b2da1

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

articles/search/search-howto-powerapps.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -77,25 +77,23 @@ A connector in Power Apps is a data source connection. In this step, you'll crea
7777

7878
:::image type="content" source="./media/search-howto-powerapps/1-8-1-import-from-sample.png" alt-text="Import from sample" border="false":::
7979

80-
1. Click **Import** to auto-fill the Request.
80+
1. Click **Import** to auto-fill the Request. Complete setting the parameter metadata by clicking the **** symbol next to each of the parameters. Click **Back** to return to the Request page after each parameter update.
8181

8282
:::image type="content" source="./media/search-howto-powerapps/1-8-2-import-from-sample.png" alt-text="Import from sample dialogue" border="false":::
8383

84-
1. Complete setting the parameter metadata by clicking the **** symbol next to each of the parameters. Click **Back** to return to the Request page after each parameter update.
85-
86-
- For *search*: Set `*` as the **default value**, set **required** as *False* and set **visibility** to *none*.
84+
1. For *search*: Set `*` as the **default value**, set **required** as *False* and set **visibility** to *none*.
8785

8886
:::image type="content" source="./media/search-howto-powerapps/1-10-1-parameter-metadata-search.png" alt-text="Search parameter metadata" border="true":::
8987

90-
- For *api-version*: Set `2019-05-06` as the **default value**, set **required** to *True*, and set **visibility** as *internal*.
88+
1. For *api-version*: Set `2019-05-06` as the **default value**, set **required** to *True*, and set **visibility** as *internal*.
9189

9290
:::image type="content" source="./media/search-howto-powerapps/1-10-2-parameter-metadata-version.png" alt-text="Version parameter metadata" border="true":::
9391

94-
- For *api-key*: Set a valid query API key as the **default value**, set **required** to *True*, and set **visibility** as *internal*. You can get a query API key from the Azure portal. For more information, see [Find existing keys](search-security-api-keys.md#find-existing-keys).
92+
1. For *api-key*: Set a valid query API key as the **default value**, set **required** to *True*, and set **visibility** as *internal*. You can get a query API key from the Azure portal. For more information, see [Find existing keys](search-security-api-keys.md#find-existing-keys).
9593

9694
:::image type="content" source="./media/search-howto-powerapps/1-10-3-parameter-metadata-version.png" alt-text="Version parameter metadata" border="true":::
9795

98-
After making these changes, toggle to the **Swagger Editor** view. In the parameters section you should see the following configuration:
96+
1. After making these changes, toggle to the **Swagger Editor** view. In the parameters section you should see the following configuration:
9997

10098
```
10199
parameters:
@@ -128,7 +126,7 @@ A connector in Power Apps is a data source connection. In this step, you'll crea
128126
129127
1. Click **Create connector** on the top right.
130128

131-
## Test the connection
129+
## 2 - Test the connection
132130

133131
After the connector is created, test it using the following steps.
134132

@@ -148,7 +146,7 @@ After the connector is created, test it using the following steps.
148146

149147
:::image type="content" source="./media/search-howto-powerapps/1-11-2-test-connector.png" alt-text="JSON response" border="true":::
150148

151-
## Visualize results
149+
## 3 - Visualize results
152150

153151
In this step, create a Power App with a search box, a search button, and a display area for the results. The Power App will connect to the recently created custom connector to get the data from Azure Search.
154152

@@ -169,6 +167,7 @@ In this step, create a Power App with a search box, a search button, and a displ
169167
:::image type="content" source="./media/search-howto-powerapps/2-4-add-controls.png" alt-text="Insert controls" border="true":::
170168

171169
1. Insert the following elements:
170+
172171
- A Text Label with the value "Query:"
173172
- A Text Input element (call it *txtQuery*, default value: "*")
174173
- A button with the text "Search"
@@ -178,7 +177,7 @@ In this step, create a Power App with a search box, a search button, and a displ
178177

179178
:::image type="content" source="./media/search-howto-powerapps/2-5-controls-layout.png" alt-text="Controls layout" border="true":::
180179

181-
1. To make the **Search button** issue a query, select the button, and Paste the following action to take on **OnSelect**:
180+
1. To make the **Search button** issue a query, select the button, and paste the following action into **OnSelect**:
182181

183182
```
184183
If(!IsBlank(txtQuery.Text),

0 commit comments

Comments
 (0)