pub fn onglobalmousedown<'a>(
    _cx: &'a ScopeState,
    _f: impl FnMut(Event<MouseData>) + 'a
) -> Attribute<'a>
Expand description

The globalmousedown event will fire when the user starts clicking anywhere with the left-click.

Event Data: MouseData

Example:

fn app(cx: Scope) -> Element {
    render!(
        rect {
            onglobalmousedown: |_| println!("Started clicking somewhere else!")
        }
        rect {
            width: "100",
            height: "100",
            background: "red",
            onmousedown: |_| println!("Started clicking!")
        }
    )
}