Posted
on Apr 1, 2010
(permalink)
Is it possible to detect if a dock is currently closed? I'm using the following to show a closed/hidden dock, but I would like to disable the button if the dock is already present on the page.
function showCommunication()
{
var obj = RadDock_GetDockableObject("<%=rdoCommunication.ClientID%>");
if (obj)
{
obj.Show();
}
}