Child pages
  • Using JQueryMobile JavaScript Library
Skip to end of metadata
Go to start of metadata

JQueryMobile Library

Servoy mobile is using JQueryMobile especially for all GUI, this means its default available and ready to use and access from servoy script methods.

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

Examples

Displaying a Loading indicator
//To show a loading indicator
$.mobile.loading('show', {text: 'Hello World', textVisible: true});
 
//to hide it again
$.mobile.loading('hide')
Change the default page transitions
$.mobile.defaultPageTransition = 'slide'

 

 

  • No labels