| 1 |
lars |
1 |
<!doctype html public "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
|
2 |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
|
3 |
|
|
|
4 |
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
|
|
5 |
<head>
|
|
|
6 |
<title>Person</title>
|
|
|
7 |
</head>
|
|
|
8 |
|
|
|
9 |
<body>
|
|
|
10 |
|
|
|
11 |
<com:TForm>
|
|
|
12 |
<h1>Person List</h1>
|
|
|
13 |
<com:TDataGrid id="personList"
|
|
|
14 |
DataKeyField="ID"
|
|
|
15 |
AutoGenerateColumns="False"
|
|
|
16 |
OnEditCommand="editPerson"
|
|
|
17 |
OnUpdateCommand="updatePerson"
|
|
|
18 |
OnCancelCommand="refreshList"
|
|
|
19 |
OnDeleteCommand="deletePerson">
|
|
|
20 |
<com:TBoundColumn DataField="FirstName" HeaderText="First Name" />
|
|
|
21 |
<com:TBoundColumn DataField="LastName" HeaderText="Last Name" />
|
|
|
22 |
<com:TBoundColumn DataField="HeightInMeters" HeaderText="Height" />
|
|
|
23 |
<com:TBoundColumn DataField="WeightInKilograms" HeaderText="Weight" />
|
|
|
24 |
|
|
|
25 |
<com:TEditCommandColumn
|
|
|
26 |
HeaderText="Edit"
|
|
|
27 |
UpdateText="Save" />
|
|
|
28 |
<com:TButtonColumn
|
|
|
29 |
HeaderText="Delete"
|
|
|
30 |
Text="Delete"
|
|
|
31 |
CommandName="delete"/>
|
|
|
32 |
</com:TDataGrid>
|
|
|
33 |
<com:TButton Text="Add" OnClick="addNewPerson" />
|
|
|
34 |
</com:TForm>
|
|
|
35 |
</body>
|
|
|
36 |
</html>
|