Extjs TabPanel 페이지 서명 변환 이벤트

2362 단어
          listeners : {
                    tabchange : function(tp, p) {
                        var allmapDIV = document.getElementById("allmap");
                        if (p.getId() == 'addPlanPanel') {
                            allmapDIV.style.display = "none";
                        }
                        if (p.getId() == 'addTabMap') {
                            allmapDIV.style.display = "block";
                        }
                    }
                },
                items : [{
                            title : ' ',
                            border : false,
                            id : 'addTabMap',
                            autoScroll : true,
                            items : [mapPanel = new Ext.FormPanel({
                                        bodyPadding : 5,
                                        frame : true,
                                        border : false,
                                        fieldDefaults : {
                                            labelAlign : 'right',
                                            labelWidth : 100
                                        },
                                        items : [{}]
                                    })]
                        }]

 
다음으로 전송:https://www.cnblogs.com/BobXie85/p/7451016.html

좋은 웹페이지 즐겨찾기