Hi, I know I have been posting on here a lot. I hope thats ok. 2 things: a) I'm new to jquery and I want to learn as much as I can, b) I have projects going at work and personal projects.
So I have data in a spread sheet, Open Office.org. So I can export it in a few different formats. The data is used in an offline webpage. I have it working my creating a csv file then using a small app I wrote to parse all the lines into a js array arr[i] = readline, (not important really). The array is then searched and the results are put into a table using document.createElement. That is the main focus of what I am doing, but I would like an easier way to incorporate everything. The way it is now every time the user updates the spreadsheet I have to reprocess it into the js file. I know there is a better way. Also, in the long run it would be idea if the file could be updated on the fly. For example if the user wanted to add a note to a particular record. This doesn't have to be incorporated now though, I was thinking of using a java applet for that. Just to reiterate - this is only going to be used offline. I tried to talk him into using a server because this would be so much easier with a proper database. Its just a free project I took on to help out. Any thoughts? Devin.