Hi, I'm finding more and more functions not being supported on Android, it really bugs me, everything in my app fine on iOS - put on Android, then a lot of functions not supported?!
For instance:
tableview.addEventListener('click', function(e) { apiData.selectedImage = e.rowData.imageURL; var im = e.source.toBlob(); apiData.selectedImage = im; // get image selected });Wanting to use e.source.toBlob when clicking on a row in a table-view, but on Android I get this isn't supported? If I use toImage, a function I'm using later is expecting a blob so that doesn't work. Is there a workaround around this?
Thanks
Your Answer
Think you can help? Login to answer this question!