Search found 3785 matches

Go to advanced search

by Alena Prykhodko
Fri Apr 12, 2013 2:31 pm
Forum: Issues
Topic: Abort Page Loading
Replies: 8
Views: 773
 
Jump to post

Abort Page Loading

Before returning to the previous page remove spinner with following code:

codeTiggzi.hideSpinner();/code

by Alena Prykhodko
Fri Apr 12, 2013 2:14 pm
Forum: Issues
Topic: Geolocation Tracking App
Replies: 74
Views: 5863
 
Jump to post

Geolocation Tracking App

Hello! In Map-Load-Run JavaScript Check if you deleted line: codedirectionDisplay;/code Should be: codevar bikeLayer, directionsDisplay, directionsService, directionsDisplay; function initialize() { bikeLayer = new google.maps.BicyclingLayer('directionsMap'); bikeLayer.setMap...
by Alena Prykhodko
Thu Apr 11, 2013 1:19 pm
Forum: Issues
Topic: Saving User Settings Permanently - i.e. locally
Replies: 4
Views: 622
 
Jump to post

Saving User Settings Permanently - i.e. locally

Hi!

Run JavaScript action with the following code:

codeif (localStorage.getItem("var_ls") == 0)
alert ("Error");
else
alert(localStorage.getItem("var_ls"));/code

where var_ls - your local storage variable.

by Alena Prykhodko
Thu Apr 11, 2013 10:28 am
Forum: Issues
Topic: Saving User Settings Permanently - i.e. locally
Replies: 4
Views: 622
 
Jump to post

Saving User Settings Permanently - i.e. locally

Hi Andy!

Use Local Storage to save your settings.

Please take a look here http://docs.tiggzi.com/tutorials/buil...

by Alena Prykhodko
Tue Apr 09, 2013 1:49 pm
Forum: Issues
Topic: How to show datepicker' calendar on page load?
Replies: 3
Views: 429
 
Jump to post

How to show datepicker' calendar on page load?

You should add the following code on pageShow event (not Load event)

code$("[dsid=datePickerName] .datepickeropenbutton").trigger("click");/code

where datePickerName - datePicker component name

Go to advanced search