@thiagohp/tapestry-5
    Preparing search index...

    Interface EventWrapper

    Generic view of an DOM event that is passed to a handler function.

    Properties: nativeEvent - the native Event object, which may provide additional information. memo - the object passed to ElementWrapper.trigger(). type - the name of the event that was triggered. char - the character value of the pressed key, if a printable character, as a string. key -The key value of the pressed key. This is the same as the char property for printable keys, or a key name for others.

    interface EventWrapper {
        char?: string;
        key?: string;
        memo?: any;
        nativeEvent: any;
        type: string;
    }
    Index

    Properties

    char?: string

    The character value of the pressed key, if a printable character, as a string.

    key?: string

    The key value of the pressed key. This is the same as the char property for printable keys, or a key name for others.

    memo?: any

    Object passed to ElementWrapper.trigger().

    nativeEvent: any

    Wrapped event.

    type: string

    Event type.