Hi,
I would like to disable the RadDock control in client side. I am using following method to disable the RadDock its working fine in IE,
But it's not working on Google chrome browser. How to resolve this problem? any idea let me know...
function disableDock() |
{ |
var dock = $find("<%= RadDock1.ClientID%>"); |
var outerDiv = dock.get_element(); |
outerDiv.disabled = true; |
} |
Thanks
Sabarish