Got this working as a proof of concept in IE and then jumped over to Firefox and poof... nothing.
I'm opening radwindow from my "a" tags with:
a href="/" onclick="showDetails(this); return false;">Click Me First!</a>
And my javascript for showDetails is:
<telerik:radcodeblock id="codeDetails" runat="server">
<script type="text/javascript">
function showDetails(link)
{
var ownd = radopen(link.href, "prodDetails");
ownd.show();
}
</script>
</telerik:radcodeblock>
Tried with and without ownd.show()... was just trying to make it all work!
And my radwindowmanager is:
<telerik:radwindowmanager id="radWindow" runat="server" visible="true" visiblestatusbar="false" height="600" width="500" destroyonclose="true" showcontentduringload="false" behaviors="Close,Move"></telerik:radwindowmanager>
Firefox is 3.0.9.
IE is 7.
What's the trick here? In Firefox, the link simply changes the current page and no window is opened.
I'm opening radwindow from my "a" tags with:
a href="/" onclick="showDetails(this); return false;">Click Me First!</a>
And my javascript for showDetails is:
<telerik:radcodeblock id="codeDetails" runat="server">
<script type="text/javascript">
function showDetails(link)
{
var ownd = radopen(link.href, "prodDetails");
ownd.show();
}
</script>
</telerik:radcodeblock>
Tried with and without ownd.show()... was just trying to make it all work!
And my radwindowmanager is:
<telerik:radwindowmanager id="radWindow" runat="server" visible="true" visiblestatusbar="false" height="600" width="500" destroyonclose="true" showcontentduringload="false" behaviors="Close,Move"></telerik:radwindowmanager>
Firefox is 3.0.9.
IE is 7.
What's the trick here? In Firefox, the link simply changes the current page and no window is opened.