android - JSON to Table in excel using javascript -
android - JSON to Table in excel using javascript -
we need sqlite db info dump excel.excel placed sdcard
in location.we did sqlite db info excel. sqlite db info convert json , passed excel it's
we have code this
function ondeviceready() { //alert("seeeeee1"); window.requestfilesystem(localfilesystem.persistent, 0, gotfs, fail); } function gotfs(filesystem) { //alert("seeeeee2"); filesystem.root.getfile("hitsabcapp.xls", {create: true, exclusive: false}, gotfileentry, fail); } function gotfileentry(fileentry) { //alert("seeeeee3"); fileentry.createwriter(gotfilewriter, fail); } function gotfilewriter(writer) { writer.onwriteend = function(evt) { }; writer.write(getallelementsjson); }
but need
please guide me .we need json info convert table , placed table in excel.
javascript android cordova table import-from-excel
Comments
Post a Comment