1. 程式人生 > >ExtJs6.0 總結(2)

ExtJs6.0 總結(2)

1、ext 樹節點檢視是第幾級的方法。node.getDepth();

2、ext中window框插入jsp,src請求到後臺controller,返回jsp。

{
								region : 'center',
								xtype : 'panel',
								itemId : jsonData[i].tableType+'Jsp',
								html : '<iframe  scrolling="auto" frameborder="0" width="100%" height="100%" src="'+Udp.getRootPath()+'/score/queryScoreJsp?tableType='+jsonData[i].tableType+'&checkId='+resultJson.id+'"></iframe>'
							}
3、ext中獲得jsp中td的內容。
window.frames['frameId'].document.getElementById('tdId').innerHTML
4、jsp中呼叫ext的方法。Udp.createWin()是我自己定義的方法,裡面是ext建立的win框。
window.parent.Udp.createWin();