Hi Luis Carlos,
Sorry for the inconvenience.
We have analyzed your query. If you are double click on the tab in Ribbon component then, tab will be expanded or collapsed. This is the behavior of Ribbon component. But you can achieve your requirement in application level by preventing double click event of tab. Please refer to below code example.
|
[Script]
//prevent dblclick event of the tab
$("#defaultRibbon").find('.e-header > li > a').dblclick(function (e) {
e.stopPropagation();
});
//prevent click event of the expand collapse button
$("#defaultRibbon_togglebutton").bind("click touchend", function (e) {
e.stopPropagation();
})
|
Please let us know whether the provided sample is helpful in achieving your requirement. If not, revert with more information to proceed further.
Regards,
Piramanayagam R