I am running into a Javascript runtime error - Object doesn't support this property or method - while trying to use the radopen function. Here is the code snippet:
| <%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> |
| <script type="text/javascript"> |
| function openWin() |
| { |
| var oWnd = window.radopen("/Checkout/FindDistributorPopup.aspx", null); |
| } |
| </script> |
I am trying to call this JS function on a button's onclick event:
<button onclick="openWin();">Search for Distributor</button>
Thanks in advance for your help.