EasyUI Forum

General Category => General Discussion => Topic started by: pratikk on January 03, 2014, 08:31:39 AM



Title: How to Disable Right Mouse Click on DataGrid
Post by: pratikk on January 03, 2014, 08:31:39 AM
As I mentioned in the title, when I right click on the lines of datagrid I want to disable the popup menu


Title: Re: How to Disable Right Mouse Click on DataGrid
Post by: stworthy on January 03, 2014, 05:19:53 PM
Try this.
Code:
$(function(){
$('#dg').datagrid({
onRowContextMenu:function(e){
e.preventDefault();
}
});
});


Title: Re: How to Disable Right Mouse Click on DataGrid
Post by: pratikk on January 03, 2014, 11:02:20 PM
Thank you stworthy. I catched  the trick ;)