I have an application where a RadWindow opens a modal window - the size of the child window being larger then the parent and im following the example in the DialogReturnValue example. A button in the parent window opens the child window.
It all works fine if the buton is a html button
However the chld window is NOT modal if the button is an asp button
The page load defining the attribute of the button
Any ideas ?
Allen
It all works fine if the buton is a html button
<button onclick="openWin2();" style="width: 123px" title="Window2">Test2</button>However the chld window is NOT modal if the button is an asp button
<asp:Button ID="Button1" runat="server" Text="Button" />The page load defining the attribute of the button
Button1.Attributes.Add("onclick", "javascript:openWin2();return false;")Any ideas ?
Allen