JqxPhotoGallery: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
Line 11: Line 11:
== Example ==
== Example ==
===Functions ===
===Functions ===
==== Enable/Disable slideShow ====
<pre>
<pre>
Function Button1_onclick()
Function Button1_onclick()

Revision as of 14:49, 14 May 2013

Description

PhotoGallery displays a slide show of images. It is based on the jqWidgets jqxScrollView widget.

Properties and Methods

See the complete documentation at jqWidget's site: http://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxscrollview/jquery-scrollview-getting-started.htm

Example

Functions

Enable/Disable slideShow

Function Button1_onclick()
  $("#PhotoGallery1").jqxScrollView({ slideShow: True });
End Function

Function Button2_onclick()
  $("#PhotoGallery1").jqxScrollView({ slideShow: False });
End Function

Events

onpageChanged (BASIC)

This event is triggered when the current page is changed.

Function PhotoGallery1_onpageChanged(event)
  Dim Page
  Page = event.args.currentPage
  console.log(Page)
End Function

Output

See above.