JqxPhotoGallery: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
Line 13: Line 13:
<pre>
<pre>
Function Button1_onclick()
Function Button1_onclick()
$("#PhotoGallery1").jqxScrollView({ slideShow: True });
  $("#PhotoGallery1").jqxScrollView({ slideShow: True });
End Function
End Function


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



Revision as of 21:49, 13 May 2013

Description

PhotoGallery displays a slide show of images.

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

Output

See above.