Child pages
  • Using JQueryMobile JavaScript Library

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

See official API docs, for how to utilize the library. The widgets part might be of most use inside Servoy Mobile. 

Examples

Code Block
titleDisplaying a Loading indicator
//To show a loading indicator

...

Code Block

$.mobile.loading('show', {text: 'Hello World', textVisible: true});
 
//to hide it

...

Code Block
 again
$.mobile.loading('hide')
Code Block

...

title

...

Change the default page transitions

...

code
$.mobile.defaultPageTransition = 'slide'

...