Hi Avinash,
You can try attaching a handler directly to the header element's contextmenu event and prevent its default action like follows:
Please, give it a try and let me know whether it helps in achieving the target result.
Regards,
Vessy
Telerik by Progress
You can try attaching a handler directly to the header element's contextmenu event and prevent its default action like follows:
$(
function
() {
//replace with your grid name
$(
"#GridPaymentSearchHeaderInfo thead"
).bind(
"contextmenu"
,
function
(e) {
e.preventDefault();
})
})
Please, give it a try and let me know whether it helps in achieving the target result.
Regards,
Vessy
Telerik by Progress
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Feedback Portal
and vote to affect the priority of the items