Ext.tree.TreeLoader传参数以及异步加载

var westObj = new Ext.tree.TreePanel({
			region : 'west',
			id : 'aphyciniTree',
			collapsible : true,
			animate : true,
			enableDD : true,
			title : '<div>aphycini note</div>',
			width : 300,
			autoScroll : true,
			split : true,
			// loader : treeLoader,
			loader : new Ext.tree.TreeLoader({
				dataUrl : basePath + 'web/aphycini/getAphyciniTree',
				baseParams : {
					condition : ''
				}
			}),
			root : new Ext.tree.AsyncTreeNode({// 树根
				id : '-1',
				text : 'aphycini note',
				iconCls : 'treeNodeStyle',
				expanded : true,
				leaf : false
			}),
			rootVisible : true,// 根节点的可见性
			listeners : {
				click : function(node) {
					alert(node.attributes.id)
				}
			},
			tbar : [
					'->',
					new Ext.form.TextField({
						id : 'queryConditon',
						emptyText : '请输入查询条件',
						width : 200
					}),
					'-',
					{
						text : '搜索',
						iconCls : 'queryStyle',
						handler : function() {
							var condition = $.trim(Ext.getCmp('queryConditon')
									.getValue());
							// alert(condition)
							var aphyciniTree = Ext.getCmp('aphyciniTree');
							var loader = aphyciniTree.getLoader();
							loader.on('beforeload', function(loader, node) {
								this.baseParams.condition = condition; // 通过这个传递参数,这样就可以点一个节点出来它的子节点来实现异步加载
							}, loader);

							loader.load(aphyciniTree.root);
							Ext.getCmp('aphyciniTree').expandAll();

						}
					} ]
		});

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值