JqxCalendar: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:


 
[[File:JqxCalendar.png]]
== Description ==
== Description ==
jqxCalendar represents a jQuery calendar widget that enables the user to select a date using a visual monthly calendar display.
jqxCalendar represents a jQuery calendar widget that enables the user to select a date using a visual monthly calendar display.

Revision as of 21:27, 4 January 2013

Description

jqxCalendar represents a jQuery calendar widget that enables the user to select a date using a visual monthly calendar display.

Properties and Methods

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

Example

Sub Main()
  $("#jqxWidget").jqxCalendar({ value: $.jqx._jqxDateTimeInput.getDateTime(new Date(2011, 9, 1)) });
End Sub

Function Calendar1_oncellSelected()
  MsgBox $("#Calendar1").jqxCalendar("getDate")
End Function

Output

See above.