I've got an ajaxified master page that loads web user controls in the "body" panel when click events occur. One web user control has a checkbox list that displays and filters a repeater item template. In the item template I have hyperlinks that I want to open windows that display editable data according to an ID value:
The javascript used is:
There is a RadWindowsManager instance with no windows listed. This example is from Telerik RadGrid archive and I was hoping it would wok for my repeater. Object Expected error occurs when the "Details" link is clicked.
Any ideas are appreciated.
| <a href="#" onclick="openRadWindow('<%# Eval("EntryId") %>'); return false;">Details</a> |
The javascript used is:
| <script type="text/javascript"> |
| function OpenPositionedWindow(oButton, url, windowName) |
| { |
| var oWnd = window.radopen(url,windowName); |
| } |
| function openRadWindow(EntryId) |
| { |
| var oWnd = radopen("Questions.aspx?ID=" + EntryId, "RadWindow1" ); |
| oWnd.Center(); |
| } |
| </script> |
There is a RadWindowsManager instance with no windows listed. This example is from Telerik RadGrid archive and I was hoping it would wok for my repeater. Object Expected error occurs when the "Details" link is clicked.
Any ideas are appreciated.