Search found 4005 matches

Go to advanced search

by Yurii Orishchuk
Wed Apr 06, 2016 10:18 pm
Forum: Issues
Topic: Uncaught ReferenceError: ToastPlugin is not defined
Replies: 41
Views: 5390
 
Jump to post

Uncaught ReferenceError: ToastPlugin is not defined

Hi Yatin, To test any cordova-based plugin you need to run your app on device as installed binary. Unfortunatly you can not test it in the browser or in Appery.io Tester app. So, basic plan for your case is: 1 download plugin zip. 2 upload it to Appery.io as cordova plugin. 3 open "app settings...
by Yurii Orishchuk
Wed Apr 06, 2016 10:06 pm
Forum: Issues
Topic: My service tests out okay but fails in my app
Replies: 13
Views: 2139
 
Jump to post

My service tests out okay but fails in my app

Hi Joni,

Yes you are right Appery.io DB API will generate an error if you will try to send incorrect format for "date" type field.

Note: correct format for "date" type field is "2011-02-15 01:02:03.004"

Regards.

by Yurii Orishchuk
Mon Mar 28, 2016 3:47 am
Forum: Issues
Topic: Infinite Scroll: Uncaught ReferenceError: onScrollHandler is not defined
Replies: 1
Views: 581
 
Jump to post

Infinite Scroll: Uncaught ReferenceError: onScrollHandler is not defined

Hi Leonardo, 1 It seems your global "onScrollHandler" function is not defined. You can try to replace "onScrollHandler" with "self.onScrollHandler" everywhere. 2 Also you need to check if you have JS asset with JS code described in part with title "Adding new JavaS...
by Yurii Orishchuk
Mon Mar 28, 2016 3:25 am
Forum: Issues
Topic: Get name from visible carosoul
Replies: 3
Views: 852
 
Jump to post

Get name from visible carosoul

Hi Moe, You can use following JS code to get current carousel item text for the the specified carousel: pre //Where "mobilecarousel_420" is your carousel name. var carousel = jQuery('[name="mobilecarousel_420"]'); var activeItem = carousel.find(&qu...
by Yurii Orishchuk
Fri Nov 20, 2015 6:06 am
Forum: Issues
Topic: How do I check if the session token is still active?
Replies: 35
Views: 5115
 
Jump to post

How do I check if the session token is still active?

Hi Jack, You need to use following syntax for invoking service datasource with parameters: pre var request = { //Here you can specify header parameters headers: {someHeader: "someValue"}, //Specify url string parameters. (works in all HTTP methods) p...
by Yurii Orishchuk
Mon Nov 02, 2015 5:58 am
Forum: Issues
Topic: Push Notification query channel within rest service
Replies: 11
Views: 1984
 
Jump to post

Push Notification query channel within rest service

Hi Vinny, It's better to test solution on the other app. You need just return integer value for the channel. So in the JS code you can use following: pre return parseInt(value); /pre Details: http://prntscr.com/8xzv6d/direct Also after these changes - check actual request in the browser debugger net...
by Yurii Orishchuk
Fri Oct 30, 2015 6:00 am
Forum: Issues
Topic: Push Notification query channel within rest service
Replies: 11
Views: 1984
 
Jump to post

Push Notification query channel within rest service

Hi Vinny,

At first, please get to work filter based only on "channels". Then you can complicate it step-by-step.

Please configure your "sendPush" service like on following screenshot:

http://prntscr.com/8wwrc0/direct

Regards.

by Yurii Orishchuk
Fri Oct 30, 2015 6:00 am
Forum: Issues
Topic: I can't get a service response for my read files service
Replies: 1
Views: 540
 
Jump to post

I can't get a service response for my read files service

Hi Ron, You use "read" service without idi(file_name). Thus you have this error. You need to fill "file_name" request parameter with certain file name and then you will get a response. Please try following: 1 open your DB on files collection. 2 Find any file from files collection...
by Yurii Orishchuk
Fri Oct 23, 2015 8:33 pm
Forum: Issues
Topic: returning from panel scrolls to top of page
Replies: 5
Views: 1020
 
Jump to post

returning from panel scrolls to top of page

Here is a solution to restore scrollTop after panel close. 1 on list item "click" add JS even handler with following js code: Details: http://prntscr.com/8u98e2/direct pre self.storedTopScroll = jQuery(window).scrollTop(); /pre 2 Put this event handler to be before event ha...
by Yurii Orishchuk
Wed Oct 21, 2015 7:10 pm
Forum: Issues
Topic: Email the value of "checked" checkbox fields from a custom Form
Replies: 8
Views: 1142
 
Jump to post

Email the value of "checked" checkbox fields from a custom Form

Hi Ed, 1 For text box you can get values(stored in this text box) with code: pre Apperyio("EventTitle").val(); /pre 2 For checkboxed - you can get checked or not this checkbox. pre Apperyio("mobilecheckbox_233").find("input").prop("checked&q...

Go to advanced search