标签:
页面在集装箱动态查询时点击网上补料的刷新按钮, 此时动态查询页面的标题也会变成网上补料且页面错误,导致原因先执行的刷新按钮事件再执行的tab select事件。
解决方法:添加红色行
mainPanel.tabs(‘add‘, {
title: node.text,
href: encodeURI(url),
cache: true,
method: ‘GET‘,
closable: true,
tools: [{
iconCls: ‘icon-mini-refresh‘,
handler: function() {
$(‘#main‘).tabs("select", $(this).parent().parent().first().first().text());
var tab = $(‘#main‘).tabs(‘getSelected‘); // get selected panel
$(‘#main‘).tabs(‘update‘, {
tab: tab,
options: {
title: node.text,
href: encodeURI(url) // the new content URL
}
});
}
}]
});
标签:
原文地址:http://blog.csdn.net/qq38397892/article/details/45055203