JqxPhotoGallery: Difference between revisions
Jump to navigation
Jump to search
Kaplanerkan (talk | contribs) |
|||
Line 20: | Line 20: | ||
End Function | End Function | ||
</pre> | |||
== Events == | |||
=== onpageChanged === | |||
This event is triggered when the current page is changed. | |||
<pre> | |||
Function PhotoGallery1_onpageChanged(event) | |||
Dim Page | |||
Page = event.args.currentPage | |||
console.log(Page) | |||
End Function | |||
</pre> | </pre> | ||
Revision as of 21:57, 13 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
Function Button1_onclick() $("#PhotoGallery1").jqxScrollView({ slideShow: True }); End Function Function Button2_onclick() $("#PhotoGallery1").jqxScrollView({ slideShow: False }); End Function
Events
onpageChanged
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.