예제 #1
0
 /// <summary>
 /// Attaches a handler for handling the specified event once on the matched set of elements.
 /// </summary>
 /// <param name="eventName">The name of the event.</param>
 /// <param name="eventData">Any data that needs to be passed to the event handler.</param>
 /// <param name="eventHandler">The event handler to be invoked.</param>
 /// <returns></returns>
 public jElement one(string eventName, JsDictionary eventData, jQueryEventHandlerWithContext eventHandler) {
     return null;
 }
예제 #2
0
 /// <summary>
 /// Attaches an event handler function for one or more events to the selected elements.
 /// </summary>
 /// <param name="eventName">The name of the event</param>
 /// <param name="selector">A selector string to filter the descendants of the selected elements that trigger the event.</param>
 /// <param name="data">A custom data structure to be passed to the handler</param>
 /// <param name="eventHandler">The event handler to be invoked</param>
 /// <returns>The current jElement.</returns>
 public jElement on(string eventName, string selector, object data, jQueryEventHandlerWithContext eventHandler) {
     return null;
 }
예제 #3
0
 /// <summary>
 /// Attaches a handler for the handling the specified event once on the matched
 /// set of elements.
 /// </summary>
 /// <param name="eventName">The name of the event.</param>
 /// <param name="eventHandler">The event handler to be invoked.</param>
 /// <returns></returns>
 public jElement one(string eventName, jQueryEventHandlerWithContext eventHandler) {
     return null;
 }
예제 #4
0
 /// <summary>
 /// Removes an event handler which has been created by called On()
 /// </summary>
 /// <param name="events">One or more space-separated event types and optional namespaces</param>
 /// <param name="selector">A selector which should match the one originally passed to On()</param>
 /// <param name="eventHandler">A handler function previously attached for the event(s)</param>
 /// <returns>The current jElement.</returns>
 public jElement off(string events, string selector, jQueryEventHandlerWithContext eventHandler) {
     return null;
 }