зеркало из https://github.com/microsoft/bobsql.git
Update readme.md
This commit is contained in:
Родитель
35e6a69045
Коммит
7de3e2fb80
|
@ -44,5 +44,65 @@ These are the steps to create a PowerApp that connects to an Azure SQL Database
|
|||
|
||||
Now on the canvas let's add an edit form that will allow us to edit the order in the list showing different fields than in the order list. This will again be based on the SalesLT.SalesOrderHeader table. We need the form to change context as we select each order on the left from the list.
|
||||
|
||||
1. On the top right we will want an edit form of each order in the list. So when we click on a given order in the list a form appears shows more information of that order which we can view or edit
|
||||
1. Click on Insert in the top Menu and choose Edit Form. Move the form over to the right
|
||||
|
||||
We need to add the data source. In this case it is the same data source for the SalesOrderHeader table.
|
||||
|
||||
3. On the right hand side for Properties, select the Data Source drop-down. Choose the SalesOrderHeader table.
|
||||
4. We need some fields to populate. To get this going quickly, choose these fields
|
||||
1. On the Properties pane select Edit Fields
|
||||
2. Choose these fields by clicking on them
|
||||
|
||||
AccountNumber<br>
|
||||
DueDate<br>
|
||||
OnlineOrderFlag<br>
|
||||
ShipMethod<br>
|
||||
Status<br>
|
||||
TotalDue<br>
|
||||
|
||||
5. We would like as we select any order to the left to appear in the form so to do that we can click on Advanced and under Data fill out the following in the Item field: Gallery1.Selected
|
||||
6. Click on the time fields and make them not visible
|
||||
7. Let's test what we have by hitting the Play button.
|
||||
1. You should be able to select an order item and see the fields change context
|
||||
1. Let's Save at this point so we don't lose our work.
|
||||
|
||||
## Step 3: Add in the order details
|
||||
|
||||
Now let's add in the order details for the order. This will be based on the SalesLT.SalesOrderDetail table. We will add a new gallery on the canvas to display this. When a user clicks on an order in the list, this new order details list should switch context for that order. In addition, we will want to show the name of the Product instead of the ProductID.
|
||||
|
||||
1. Select Insert for a blank vertical gallery. Position this over the blank space under the edit form. Change layout to title, subtitle, and body
|
||||
1. On the right side select the Drop Down for Data Source.
|
||||
1. We need a different table so type in SQL in the search. Select SQL Server
|
||||
1. Choose the SalesLT.SalesOrderDetail table and select Connect
|
||||
1. Choose these fields
|
||||
|
||||
ProductID<br>
|
||||
Modified Date<br>
|
||||
OrderQty<br>
|
||||
|
||||
1. Now we need to tie in the Order vertical list on the left with this list in middle. There is a relationship between these and we can use the Filter formula to help.
|
||||
1. Select the new vertical gallery item. At the top of the Formula edit box type in this formula `Filter('SalesLT.SalesOrderDetail', SalesOrderID = LookUp('SalesLT.SalesOrderHeader', SalesOrderID = Gallery1.Selected.SalesOrderID, SalesOrderID))`
|
||||
1. And we want ProductName not just the ID. Add a new connection for the SalesLT.Product table like you did earlier for the SalesLT.Customer table.
|
||||
1. Then click on the ProductID field and put this in the formula `LookUp('SalesLT.Product', ProductID = ThisItem.ProductID, Name)`
|
||||
1. Let's test the app again by hitting the Play button
|
||||
1. As you select the Orders to the left you should now see the Edit form context change and the list of Order Details change
|
||||
1. Save your work.
|
||||
|
||||
## Step 4: Finish the app
|
||||
|
||||
Let's finish the app by sorting the order list and adding a button to allow the user to save changes in the edit form.
|
||||
|
||||
1. Click on Gallery1 and put in this formula Sort('SalesLT.SalesOrderHeader', SalesOrderID).
|
||||
2. Let's add a button to allow the user to save updates to the order form.
|
||||
3. Go to Screen1 on the Tree View
|
||||
4. Insert..Icon..Check
|
||||
5. Move Check to far right side of the canvas.
|
||||
6. Select the check icon. On Advanced, Action, OnSelect, type in SubmitForm( Form2 ). So now changes to data in the form will be updated in the database.
|
||||
7. Select DisplayMode and put in this formula: If( Form2.Unsaved, Edit, Disable
|
||||
8. Save your work. Then play the app.
|
||||
9. The order list should now be sorted by SalesOrderID.
|
||||
10. Notice the check icon is greyed out because no changes have been made.
|
||||
11. Take the first order and select the Online Order so it is ON. Notice the check icon is now active. Click the check icon to save the change. You can use any SQL tool to verify that change was made.
|
||||
12. Optionally, select each gallery and form and add a color to it.
|
||||
13. Save your work and play the app to see it all in action.
|
Загрузка…
Ссылка в новой задаче