DateTimeInput1.onvalueChanged = function(e) {
NSB.MsgBox("New date is " + e.args.date);
}
No edit summary |
No edit summary |
||
(7 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
[[File:Jqxdatetimeinput.png]] | [[File:Jqxdatetimeinput.png]] | ||
== Description == | == Description == | ||
jqxDateTimeInput represents a highly configurable widget for displaying and selecting date and time values by using a popup Calendar display or by keyboard input into the text field. | |||
jqWidgets is a commercial product, which depending on how you use it, requires a license fee. | jqWidgets is a commercial product, which depending on how you use it, requires a license fee. | ||
Complete details are on jqWidget's website. The product is well supported. | Complete details are on jqWidget's website. The product is well supported. | ||
IMPORTANT: Make sure that FastClick in Project Properties is set to False, otherwise the control will not work properly on iOS. | |||
== Properties and Methods == | == Properties and Methods == | ||
This control is well documented on the jqWidget's website: http://www.jqwidgets.com/jquery-widgets-documentation/. | |||
http://www.jqwidgets.com/jquery-widgets-documentation/ | |||
{| class='wikitable' | {| class='wikitable' | ||
|- | |- | ||
Line 16: | Line 18: | ||
| dropDownHorizontalAlignment || Calendar alignment. | | dropDownHorizontalAlignment || Calendar alignment. | ||
|- | |- | ||
| enableBrowserBoundsDetection || | | enableBrowserBoundsDetection || When this property is set to true, the popup calendar may open above the input, if there's not enough space below the DateTimeInput. | ||
|- | |- | ||
| formatString || Date or time format. Use t for time. See jqWidgets docs for all the options. | | formatString || Date or time format. Use t for time. See jqWidgets docs for all the options. | ||
Line 29: | Line 31: | ||
|- | |- | ||
| style || Styling rules for element | | style || Styling rules for element | ||
|} | |} | ||
== Example | == Example == | ||
</ | <tabber> | ||
JavaScript= | |||
<syntaxhighlight lang="JavaScript"> | |||
DateTimeInput1.onvalueChanged = function(e) { | |||
NSB.MsgBox("New date is " + e.args.date); | |||
} | |||
</syntaxhighlight> | |||
|-| | |||
BASIC= | |||
<syntaxhighlight lang="vb.net"> | |||
Function DateTimeInput1_onvalueChanged(e) | |||
MsgBox "New date is " & e.args.date | |||
End Function | |||
</syntaxhighlight> | |||
</tabber> | |||
== Output == | == Output == |
jqxDateTimeInput represents a highly configurable widget for displaying and selecting date and time values by using a popup Calendar display or by keyboard input into the text field.
jqWidgets is a commercial product, which depending on how you use it, requires a license fee. Complete details are on jqWidget's website. The product is well supported.
IMPORTANT: Make sure that FastClick in Project Properties is set to False, otherwise the control will not work properly on iOS.
This control is well documented on the jqWidget's website: http://www.jqwidgets.com/jquery-widgets-documentation/.
closeCalendarAfterSelection | Close Calendar after selection has been done. |
dropDownHorizontalAlignment | Calendar alignment. |
enableBrowserBoundsDetection | When this property is set to true, the popup calendar may open above the input, if there's not enough space below the DateTimeInput. |
formatString | Date or time format. Use t for time. See jqWidgets docs for all the options. |
name | Key in submitted form |
selectionMode | Sets or gets the dropdown calendar's selection mode. |
showCalendarButton | Show the Calendar button. |
showFooter | Sets a value indicating whether the calendar's footer is displayed. |
style | Styling rules for element |
DateTimeInput1.onvalueChanged = function(e) {
NSB.MsgBox("New date is " + e.args.date);
}
Function DateTimeInput1_onvalueChanged(e)
MsgBox "New date is " & e.args.date
End Function
See above.