1

Hope you have superb spirit today.

I am newbie with Framework7. I am creating an application for CSV Reader as i have created same application in Android Native.

I have googled my problem but didnt find anything to use CSV in Framework7.

Is there any link or help?

Your help would be appreciated.

Pratik Butani
  • 60,504
  • 58
  • 273
  • 437
  • What is the problem exactly? Please explain more about the issue for us to be able to help you... – Tim V Oct 07 '15 at 13:33
  • Actually I want to make an application using Fragmework 7, My concept is for sharing quotes which is in Excel or CSV file. How can i parse this file in Framework 7. – Pratik Butani Oct 08 '15 at 04:21

1 Answers1

0

Framework7 does not support parsing of .csv files, it does however support parsing JSON.

Your options:

  1. Make your own parsing functionality to convert the csv to arrays. Using for example Javascript .split()
  2. Find some code on-line which converts csv to for example JSON (convert csv file to json object datatable)
  3. Convert the csv to JSON on the serverside, for example with PHP
Community
  • 1
  • 1
Tim V
  • 490
  • 3
  • 8