Willie Sims
Posts: 0
Joined: Wed Jul 10, 2013 4:37 pm

Need some Advice

Part of my app lets the user store information about the loads they have pulled, I want to be able to display this data on a page like a database,

I would prefer if possible to keep the storage local but I am not sure how to go about doing this so that it will store each record

Here is What I am trying to store I read through a lot of the posts but I am trying to understand, Will Local Storage allow me to store more than one record
So for example
Trip Number
Rate
Rate Type
Miles
Weight
Scanned Date
Pay Date

There will be multiple trips
Then on the next page the data explorer in spreadsheet format

Trip Number- Rate Rate Type - Pay Per Mile - Scanned Date - Pay Date

maxkatz
Posts: 0
Joined: Fri Aug 13, 2010 3:24 pm

Need some Advice

Local storage allows you to store key/value pairs. In the value, you can store a single value, an array or objects (as text). This will require JavaScript coding.

https://developer.mozilla.org/en-US/d...

Return to “Issues”