<c:if test="${requestScope.isntCustVip == true}">
<script type="text/javascript">
function browserPage(pageNum){
var t2 = parent.Ext.getCmp("main").child("#" +'StarCustomerHold_'+${requestScope.staff_name});
t2.update();
var t1 = parent.Ext.getCmp("main").child("#" +'StarCustomerHold_'+${requestScope.cm_id});
t1.close();
}
</script>
</c:if>
<c:if test="${requestScope.isntCustVip == false}">
<script type="text/javascript">
function browserPage(pageNum){
var t2 = parent.Ext.getCmp("main").child("#M0503");
t2.update();
var t1 = parent.Ext.getCmp("main").child("#" +'StarCustomerHold_'+${requestScope.cm_id});
t1.close();
}
</script>
</c:if>
The t2.update(); method can be used in Firefox browser and 360 speed mode, but cannot be used in compatibility mode and IE browser. It must be compatible with IE. I would like to ask how to solve the compatibility problem to make the t2 panel Refresh the page
Only supports the standard mode of ie8, does not support ie6 and 7