OLD | NEW |
1 --- | 1 --- |
2 layout: default | 2 layout: default |
3 title: "Target 10: Get Input from a Form" | 3 title: "Get Input from a Form" |
4 description: "Using HTML forms and input elements to send data to a server" | 4 description: "Using HTML forms and input elements to send data to a server" |
5 has-permalinks: true | 5 has-permalinks: true |
6 tutorial: | 6 tutorial: |
7 id: forms | 7 id: forms |
8 next: indexeddb | 8 next: indexeddb |
9 next-title: "Use IndexedDB" | 9 next-title: "Use IndexedDB" |
10 prev: fetchdata | 10 prev: fetchdata |
11 prev-title: "Fetch Data Dynamically" | 11 prev-title: "Fetch Data Dynamically" |
12 --- | 12 --- |
13 | 13 |
(...skipping 30 matching lines...) Expand all Loading... |
44 <li> | 44 <li> |
45 <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/web
/target10/multiselect" | 45 <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/web
/target10/multiselect" |
46 target="_blank">multiselect</a> | 46 target="_blank">multiselect</a> |
47 </li> | 47 </li> |
48 </ul> | 48 </ul> |
49 | 49 |
50 {% endcapture %} | 50 {% endcapture %} |
51 | 51 |
52 {% capture content %} | 52 {% capture content %} |
53 | 53 |
54 <div id="under-construction" markdown="1"> | 54 <div class="tute-target-title"> |
55 <h3> <i class="icon-wrench"> </i> Under construction </h3> | 55 <h1>{{page.title}}</h1> |
56 | 56 <h3>Use forms to get data from users.</h3> |
57 This is a draft under construction. | |
58 Your kindly worded | |
59 <a | |
60 href="http://code.google.com/p/dart/issues/entry?template=Tutorial%20feedback" | |
61 target="_blank"> | |
62 comments and suggestions | |
63 </a> | |
64 are appreciated. | |
65 Thank you for your patience. | |
66 </div> | 57 </div> |
67 | 58 |
68 Many web applications rely on forms to collect data | 59 Many web applications rely on forms to collect data |
69 and submit that data to a server. | 60 and submit that data to a server. |
70 A form usually contains several input elements | 61 A form usually contains several input elements |
71 for entering data of various kinds, | 62 for entering data of various kinds, |
72 such as names and addresses, birthdays, email addresses, | 63 such as names and addresses, birthdays, email addresses, |
73 and so on. | 64 and so on. |
74 HTML supports several kinds of input elements, | 65 HTML supports several kinds of input elements, |
75 including text fields, text areas, radio buttons, and checkboxes. | 66 including text fields, text areas, radio buttons, and checkboxes. |
(...skipping 905 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
981 ###What next? | 972 ###What next? |
982 | 973 |
983 Try our | 974 Try our |
984 <a href="/codelabs/web-ui-writer/index.html" target="_blank"><i class="icon-beak
er"> </i>Codelab</a>. | 975 <a href="/codelabs/web-ui-writer/index.html" target="_blank"><i class="icon-beak
er"> </i>Codelab</a>. |
985 In this step-by-step guide, you’ll build a simple, | 976 In this step-by-step guide, you’ll build a simple, |
986 single-page, modern web app for desktop and mobile. | 977 single-page, modern web app for desktop and mobile. |
987 | 978 |
988 {% endcapture %} | 979 {% endcapture %} |
989 | 980 |
990 {% include tutorial.html %} | 981 {% include tutorial.html %} |
OLD | NEW |