Widgets
Samples
Forum
Support
Documentation
/
Suite 7.0
click
inputBlur
inputCreated
inputFocus
openMenu
Start
Ribbon
Ribbon API
Events
click
fires after a click on a control
void
click
(
string
id
,
Event
e
){ ... };
Parameters
id
string
the ID of a clicked control
e
Event
a native event object
Example
ribbon.
events
.
on
(
"Click"
,
function
(
id
,
e
)
{
console.
log
(
id
)
;
}
)
;
Related samples
Ribbon. Events
See also
Articles
Event Handling
Back to top