I have this issue where I call a function to open a radwindow that works fine in FF but only works the first time in IE...
very simple I know...I hit the break point fine everytime in FF but in IE only the first time...
here is how I am calling the function...there are hyperlink controls in a repeater...
the error that I get is: Microsoft JScript runtime error: Object doesn't support this property or method
as if it doesn't see the function. if a change the myfunction() to alert("hello") it works every time...
am I missing something? thanks!
function MyFunction() { debugger; var oWnd = radopen("http://www.google.com", "MyRadWindow"); oWnd.Show(); }very simple I know...I hit the break point fine everytime in FF but in IE only the first time...
here is how I am calling the function...there are hyperlink controls in a repeater...
lnk.Attributes.Add("onClick", "javascript: MyFunction(); return false;"); the error that I get is: Microsoft JScript runtime error: Object doesn't support this property or method
as if it doesn't see the function. if a change the myfunction() to alert("hello") it works every time...
am I missing something? thanks!