https://github.com/rhildred/prog8110midtermstart
W2017 starter files for midterm
https://github.com/rhildred/prog8110midtermstart
Last synced: about 1 year ago
JSON representation
W2017 starter files for midterm
- Host: GitHub
- URL: https://github.com/rhildred/prog8110midtermstart
- Owner: rhildred
- Created: 2017-02-21T14:34:22.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-21T16:11:54.000Z (over 9 years ago)
- Last Synced: 2025-05-15T17:15:34.863Z (about 1 year ago)
- Language: JavaScript
- Size: 2.74 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# prog8110MidtermStart
W2017 starter files for midterm
1) change the 3 tabs to be: (.5 mark)
a) expense list
b) add expense
c) categories
2) change the icons appropriately [using this link](http://ionicons.com/)(.5 mark)
3) create a form to add an expense with the following fields: (1 mark)
a) an amount
b) a category to be selected from
i) food
ii) lodging
iii) clothing and personal
iv) entertainment
c) a description
4) create a database [using this example](https://github.com/rhildred/indexdbexample) and connect the form to it (1 mark)
5) create a page that lists the expenses from the database (1 mark)
6) create a page that graphs the expenses by category [using this example](https://github.com/rhildred/ionicgraph) (1 mark)
*hint `SELECT category, SUM(amount) AS expense FROM expenses GROUP BY 1`