Search found 18 matches

Go to advanced search

by Clinton
Thu Oct 25, 2012 12:49 am
Forum: Issues
Topic: How to create an app search feature using Parse database as a backend?
Replies: 11
Views: 2116
 
Jump to post

How to create an app search feature using Parse database as a backend?

Great post by Jahmarley! Thanks! Tiggzi should add this to their tutorials. My apologies if its there already, or something similar at least.

by Clinton
Fri Oct 19, 2012 4:12 pm
Forum: Issues
Topic: how to post camera photo file to parse.com?
Replies: 20
Views: 4639
 
Jump to post

how to post camera photo file to parse.com?

This also won't work precode var beerService = new Tiggr.RestService({ 'url': 'https://api.parse.com/1/classes/beer', 'dataType': 'json', 'type': 'post', 'contentType': 'application/json', }); var abeername = localStorage&#4...
by Clinton
Fri Oct 19, 2012 3:13 pm
Forum: Issues
Topic: how to post camera photo file to parse.com?
Replies: 20
Views: 4639
 
Jump to post

how to post camera photo file to parse.com?

Ok I'm having a boat load of trouble with the base64 1) I'm not sure what my type should be for my base64 field in my class. 2) Not sure how to send it along with normal text. I'm not sure about the javascript. Nothing I tried works. This was my latest attempt. precode curl -X POST \ -H "X-Pars...
by Clinton
Fri Oct 19, 2012 2:01 pm
Forum: Issues
Topic: how to post camera photo file to parse.com?
Replies: 20
Views: 4639
 
Jump to post

how to post camera photo file to parse.com?

Great! Thats what I was looking for. Seems to work! Should be able to send a base64 to my Parse DB. Thanks!

by Clinton
Fri Oct 19, 2012 1:37 pm
Forum: Issues
Topic: how to post camera photo file to parse.com?
Replies: 20
Views: 4639
 
Jump to post

how to post camera photo file to parse.com?

So is there no way of doing this kind of thing in an app environment? I see there is the camera service but I can't find a tutorial to use it. Will this maybe work?

by Clinton
Fri Oct 19, 2012 1:34 pm
Forum: Issues
Topic: Can't get the photo upload to parse tutotial to work
Replies: 0
Views: 1253
 
Jump to post

Can't get the photo upload to parse tutotial to work

I followed the example here . Looks great and works when I test on a PC. However, when I test on my mobile device from the Tiggzi Test Android app it does not open a file explorer or gallery or anything. Is there perhaps a work around for this? I'd really like to get the storage url from the gallery...
by Clinton
Fri Oct 19, 2012 1:28 pm
Forum: Issues
Topic: Android Permissions, can I reduce the number of them
Replies: 6
Views: 2218
 
Jump to post

Android Permissions, can I reduce the number of them

I have read on another post you can, but unfortunately you cannot do it on the Tiggzi environment. You'd have to export the application and do it manually.

Here is the link to the discussion https://getsatisfaction.com/tiggzi/topics/excessive_permissions-14uun0

by Clinton
Fri Oct 19, 2012 12:01 pm
Forum: Issues
Topic: how to post camera photo file to parse.com?
Replies: 20
Views: 4639
 
Jump to post

how to post camera photo file to parse.com?

I followed the example. Looks great and works when I test on a PC. However, when I test on my mobile device from the Tiggzi Android app it does not open a file explorer or gallery or anything. Is there perhaps a work around for this?

by Clinton
Thu Oct 18, 2012 8:48 pm
Forum: Issues
Topic: Contact list
Replies: 0
Views: 1231
 
Jump to post

Contact list

I am having trouble getting the contact list to work. I am following the guide here http://blog.tiggzi.com/2011/11/new-ti... some parts are not very clear. Next I did the mapping from the contact service to the labels on the list and I did map the $ to the list itself. Next there is talk of "Ne...
by Clinton
Thu Oct 18, 2012 5:38 pm
Forum: Issues
Topic: Authinticating user (REST) in login screen before navigating to next screen
Replies: 4
Views: 1026
 
Jump to post

Authinticating user (REST) in login screen before navigating to next screen

Great! Thank you.

Got it working with this in the end:

precode
var username = Tiggr('txtUsername').val();
var usernameSer = localStorage.getItem('myusername');

if (username == usernameSer) {
Tiggr.navigateTo('homeScreen');
}
/code/pre

Go to advanced search