Search found 11 matches

Go to advanced search

by JM
Sun Jul 05, 2015 8:13 am
Forum: Issues
Topic: MY APP NOT WORK
Replies: 8
Views: 936
 
Jump to post

MY APP NOT WORK

Don't worry I nailed it!!

It was a permissions issue with the app

Turned on Access_Network_state in the Android permissions and it worked like a charm

Thanks for the reply

by JM
Sun Jul 05, 2015 7:41 am
Forum: Issues
Topic: MY APP NOT WORK
Replies: 8
Views: 936
 
Jump to post

MY APP NOT WORK

i have installed via the apk and have the same issue. App runs fine in the emulators but once installed via the apk on a real device it throws up the error "unfortunately "my app" has stopped working"

by JM
Sat Feb 28, 2015 6:30 am
Forum: Issues
Topic: List service - How do you return only user specific data not everything in database!
Replies: 4
Views: 505
 
Jump to post

List service - How do you return only user specific data not everything in database!

Thanks Bruce!

Wow :) that was so simple in the end. Your explanation was awesome. Thank you so much for your help i'm really greatful.

Thanks again

JM

by JM
Sat Feb 28, 2015 6:19 am
Forum: Issues
Topic: List service - How do you return only user specific data not everything in database!
Replies: 4
Views: 505
 
Jump to post

List service - How do you return only user specific data not everything in database!

Hi,

Thanks so much for your reply, i'm going to give it a go now and i'll let you know how i go!

by JM
Sat Feb 28, 2015 3:38 am
Forum: Issues
Topic: List service - How do you return only user specific data not everything in database!
Replies: 4
Views: 505
 
Jump to post

List service - How do you return only user specific data not everything in database!

Hi I have a database collection that includes the user_id against every object. I use a list service to return a list of objects from the database to display to the user. The problem is that my list service returns every piece of data in the database rather than only data belonging to the logged in ...
by JM
Wed Sep 24, 2014 11:21 am
Forum: Issues
Topic: add days to a date in database and display in ui
Replies: 8
Views: 921
 
Jump to post

add days to a date in database and display in ui

I have also tried function addDays(days) { var duedate = new Date(this.valueOf()); dat.setDate(dat.getTime() + days); return duedate; } called by var last, due; last = new Date(value.LastWormed); due = new Date(last.getTime()+ addDays(+5)); var y = new Date(due.split(" ")[0]); var z = y.to...
by JM
Wed Sep 24, 2014 11:16 am
Forum: Issues
Topic: add days to a date in database and display in ui
Replies: 8
Views: 921
 
Jump to post

add days to a date in database and display in ui

had thought about trying to store the due date as a separate date in the database and using something like $('.new').val(moment($("#DatePicker").val()).add(5, 'days')); to add the days on the way in But when i do i get an error saying moment is not defined. I dont really care how i achieve...
by JM
Wed Sep 24, 2014 10:55 am
Forum: Issues
Topic: add days to a date in database and display in ui
Replies: 8
Views: 921
 
Jump to post

add days to a date in database and display in ui

thanks for the reply and your help I have had a few goes with the example code you gave me and I cant really get this to work at all it returns the "last" date not the "transformed" due date. i see that moment.js is an available library and wonder if this might be helpful...I can...
by JM
Sat Sep 20, 2014 5:21 am
Forum: Issues
Topic: add days to a date in database and display in ui
Replies: 8
Views: 921
 
Jump to post

add days to a date in database and display in ui

this is what i have so far var last, due, text; last = new Date(value.LastWormed); due = new Date(); due.setFullYear(2100, 0, 14); if (last < due) { text = "I am all up to date with my worming."; } else { text = "I am due to be wormed."; } return text; instead of due.setfullyear(...
by JM
Sat Sep 20, 2014 5:16 am
Forum: Issues
Topic: add days to a date in database and display in ui
Replies: 8
Views: 921
 
Jump to post

add days to a date in database and display in ui

Hi, thanks for the reply.

I am setting the date via the app using the date picker and storing it in the database using the create service. It is stored as a date field in the data base.

Thanks

Go to advanced search