JqxCalendar: Difference between revisions
Jump to navigation
Jump to search
Add javascript snppet |
Adding FastClick fix |
||
Line 30: | Line 30: | ||
alert($("#Calendar1").jqxCalendar("getDate")); | alert($("#Calendar1").jqxCalendar("getDate")); | ||
} | } | ||
</pre> | |||
== FastClick Fix == | |||
On some devices, FastClick can cause problems with the calendar function. The following code should resolve the issue: | |||
<pre> | |||
JavaScript | |||
$('#Calendar1 *').addClass('needsclick') | |||
$('#Calendar1').on('change viewChange click',function(){$('#Calendar1 *').addClass('needsclick')}) | |||
End JavaScript | |||
</pre> | </pre> | ||
Revision as of 07:22, 11 July 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 (Basic)
Sub Main() $("#jqxWidget").jqxCalendar({ value: $.jqx._jqxDateTimeInput.getDateTime(new Date(2011, 9, 1)) }); End Sub Function Calendar1_oncellSelected() MsgBox $("#Calendar1").jqxCalendar("getDate") End Function
Example (JavaScript)
function Main() { $("#jqxWidget").jqxCalendar({ value: $.jqx._jqxDateTimeInput.getDateTime(new Date(2011, 9, 1)) }); } Calendar1.oncellSelected = function() alert($("#Calendar1").jqxCalendar("getDate")); }
FastClick Fix
On some devices, FastClick can cause problems with the calendar function. The following code should resolve the issue:
JavaScript $('#Calendar1 *').addClass('needsclick') $('#Calendar1').on('change viewChange click',function(){$('#Calendar1 *').addClass('needsclick')}) End JavaScript
Output
See above.