我有一个带有usercontrol的aspx页面。 ext:窗口放在用户控件中
<ext:Window Hidden="true" AutoScroll="false" Closable="true"
HideParent="true" Modal="true" Resizable="false" Header="true" runat="server" ID="tswindow"
我想使用javascript调用显示此窗口。
var window = Ext.getCmp('<%= tswindow.ClientID %>');
window.show();
我收到了以下错误
未捕获的TypeError:对象[object DOMWindow]没有方法'show'
答案 0 :(得分:0)
试试这个可行。
在窗口配置中定义Id =“my_window”。然后获取窗口对象Ext.getCmp('my_window').show();