AjaxControlToolkit.TabPanel.prototype._header_onclick 抛出错误
将 ajaxtoolkit 1.0 升级到 3.0 后,AjaxControlToolkit.TabPanel.prototype._header_onclick 会引发错误。
下面是代码
AjaxControlToolkit.TabPanel.prototype._header_onclick = function(e) {
this.raiseClick();
if (isValidTabChange()) // add this additional code line to do validation
this.get_owner().set_activeTab(this);
};
错误是 AjaxControlToolkit 未定义并且代码抛出错误。有人遇到过这个问题吗?我可能做错了什么,我想知道以前有人解决过这个问题。
AjaxControlToolkit.TabPanel.prototype._header_onclick throws an error after upgrading ajaxtoolkit 1.0 to 3.0.
Below is the code
AjaxControlToolkit.TabPanel.prototype._header_onclick = function(e) {
this.raiseClick();
if (isValidTabChange()) // add this additional code line to do validation
this.get_owner().set_activeTab(this);
};
The error is AjaxControlToolkit is undefined and the code throws and error. Did anyone come across this issue? I might be doing something wrong, I want to know someone has resolved this issue before.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
他们在 AjaxControlToolkit 4.1.7.1213 或 7.1213 中将 TabContainer UI 修改为 jQuery。
因此,您必须使用 ActJQuery 代替 Sys.Extended.UI 来访问 TabPanel 方法。
提示:如果您要检查 tabpanel
Cheers中是否有任何控件发生更改,请使用此选项
They modify the TabContainer UI to jQuery in AjaxControlToolkit 4.1.7.1213 OR 7.1213.
So you have to use actJQuery insted of Sys.Extended.UI to access the TabPanel methods.
Tip: Use this if you are checking if any control changed in tabpanel
Cheers