Hi all, I have in the same page.aspx a RadToolBar with its RadToolBarButton and a simple <asp:Button>.
In this page I have also a simple RadWindow so defined:
In the code behind, for the simple <asp:Button> I have:
and for the RadToolBarButton I have:
I'm sure that the AddUser sub is correctly called because I've verified it by debug breakpoint.
The problem is that when I click on <asp:Button> the RadWindowAddUser is shown correctly, but when I click on RadToolBarButto it doesn't!
Why???
Anybody can help me? Thanks.
Giulio Ferri
In this page I have also a simple RadWindow so defined:
| <telerik:RadWindowManager ID="RadWinMngr" runat="server"> |
| <Windows> |
| <telerik:RadWindow ID="RadWindowAddUser" runat="server" NavigateUrl="http://www.google.com" VisibleOnPageLoad="true" Visible="false" /> |
| </Windows> |
| </telerik:RadWindowManager> |
In the code behind, for the simple <asp:Button> I have:
| Private Sub Button1_click(...) |
| RadWindowAddUser.Visible = True |
| End Sub |
and for the RadToolBarButton I have:
| Private Sub AddUser() |
| RadWindowAddUser.Visible = True |
| End Sub |
I'm sure that the AddUser sub is correctly called because I've verified it by debug breakpoint.
The problem is that when I click on <asp:Button> the RadWindowAddUser is shown correctly, but when I click on RadToolBarButto it doesn't!
Why???
Anybody can help me? Thanks.
Giulio Ferri