ComboxTree 더 블 스크롤 바 처리

1126 단어 ext
ComboxTree 를 사용 할 때 Tree 와 ComboBox 가 동시에 스크롤 바 가 나타 나 는 것 을 방지 하기 위해 ComboxTree 를 새로 만 들 때 다음 과 같이 설정 합 니 다.
tjdwCombTree = new Ext.ux.ComboBoxTree({
					id : 'tjdwCombTree',
					emptyText : loginUintName,
					fieldLabel : '    ',
					hiddenName : 'dwMc',
					width : 150,
					listWidth : 300,
					ctCls : "ctCls",
					selectNodeModel : 'leaf',
					autoScroll : false,
					tree : {
						xtype : 'treepanel',
						loader : this.tjdwLoader,
						autoScroll : false,
						autoHeight : true,
						root : new Ext.tree.AsyncTreeNode({
									id : loginUintId,
									text : loginUintName
								})
					},
					listeners : {
						//             
						select : function(comboxtree, newNode, oldNode) {
							//                  ,          
							queryData();
						}
					}
				});

 주요 설정:ComboxTree 구성 요소 의 autoScroll:false
여기에 포 함 된 TreePanel 의 autoScroll:false,autoHeight:true,

좋은 웹페이지 즐겨찾기