Raised when the dropdown is shown.
Namespace: MindFusion.Common.UI
File: Picker.js
SyntaxJavaScript
Copy Code
|
|---|
EventDispatcher dropDownShow |
Event DataThe event handler method receives the following arguments:
sender
A Picker instance, which is the source of the event. This object will be passed to the handler function as the first argument.
args
An EventArgs instance, which contains event data. This object will be passed to the handler function as the second argument.
ExampleThe following code handles the dropDownShow event of a DateTimePicker:
JavaScript
Copy Code
|
|---|
// Handle the dropDownShow event. // This is the handler function of the dropDownShow event. } |
See Also