搜集的Ext tree的属性方法与事件

efined By

Config options

Ext.util.Observable

view source

listeners : Object

一个配置对象,包含一个或多个事件处理函数,在对象初始化时添加到对象。 ...

Defined By

Properties

Ext.util.Observable

view source

hasListeners : ObjectREADONLY

本对象包含任何有监听器的事件的键。监听器可以在实例上直接设置, 或者在其类或者父类(通过observe) 或者在MVC EventBus上设置。本对象的值为真 (一个非零的数字)和假(0或者undefined)。它们并不代表确切的监听...

Ext.util.Observable

view source

isObservable : Boolean

在本类中设置为true将一个对象标识为实例化的Observable或其子类。 ...

Ext.data.Tree

view source

root : Ext.data.NodeInterface

该树的根节点 ...

Methods

Defined By

Instance Methods

Ext.data.Tree

view source

newExt.data.TreeExt.data.NodeInterface root )
Object

创建新的树对象。 ...

Ext.util.Observable

view source

addEventsObject/String...
eventNames )

向本Observable可能触发的事件列表中添加指定的事件。 ...

Ext.util.Observable

view source

addListenerString/Object eventName,
[Function fn], [Object scope],
[Object options] )

向本对象添加一个事件处理函数,例如: myGridPanel.on("mouseover", this.onMouseOver, this); 这个方法也允许传递单个参数,参数为一个 包含指定多个事件的属性的配置对象。例如: ...

Ext.util.Observable

view source

addManagedListenerExt.util.Observable/Ext.Element item, Object/String ename, Function fn, Object scope, Object opt )

向任何Observable对象(或者Ext.Element)添加监听器, 当组件被销毁时,监听器自动被移除 ...

Ext.util.Observable

view source

clearListeners( )

移除本对象的包括受管理的监听器在内的所有监听器 ...

Ext.util.Observable

view source

clearManagedListeners( )

移除本对象的所有受管理的监听器 ...

Ext.util.Observable

view source

enableBubbleString/String[]
eventNames )

通过调用this.getBubbleTarget()(如果存在)允许本Observable对象触发的事件沿着继承体系起泡 在Observable基类中没有实现类。 ...

Ext.util.Observable

view source

fireEventString eventName, Object...
args ) : Boolean

使用传递过来的参数(去掉事件名,加上传递给addListener的options对象 )触发指定的事件。 ...

Ext.data.Tree

view source

getNodeByIdString id )
Ext.data.NodeInterface

通过节点的id来获取该树中的一个节点。 ...

Ext.data.Tree

view source

getRootNode( )
Ext.data.NodeInterface

返回该树的根节点。 ...

Ext.util.Observable

view source

hasListenerString eventName )
Boolean

检查本对象是否有特定事件的监听器, 或者检查事件是否起泡。 ...

Ext.util.Observable

view source

monExt.util.Observable/Ext.Element item, Object/String ename, Function fn, Object scope, Object opt )

addManagedListener的简写方法 向任何Observable对象(或者Ext.Element)添加监听器, 当组件被销毁时,监听器自动被移除 ...

Ext.util.Observable

view source

munExt.util.Observable/Ext.Element item, Object/String ename, Function fn, Object scope )

removeManagedListener的简写方法 移除通过mon方法添加的监听器。 ...

Ext.util.Observable

view source

onString/Object eventName,
[Function fn], [Object scope],
[Object options] )

addListener的简写方法 向本对象添加一个事件处理函数,例如: myGridPanel.on("mouseover", this.onMouseOver, this); 这个方法也允许传递单个参数,参数为一个 包含指定...

Ext.util.Observable

view source

relayEventsObject origin, String[]
events, [String prefix] )

从指定的Observable接替选定的事件就好像事件是this触发的。 ...

Ext.util.Observable

view source

removeListenerString eventName, Function fn, Object scope )

移除事件处理函数。 ...

Ext.util.Observable

view source

removeManagedListenerExt.util.Observable/Ext.Element item, Object/String ename, Function fn, Object scope )

移除通过mon方法添加的监听器。 ...

Ext.util.Observable

view source

resumeEvents( )

继续事件的触发(见suspendEvents)。 ...

Ext.data.Tree

view source

setRootNodeExt.data.NodeInterface node )
Ext.data.NodeInterface

设置该树的根节点。 ...

Ext.util.Observable

view source

suspendEventsBoolean queueSuspended )

挂起所有事件的触发。(见resumeEvents) ...

Ext.util.Observable

view source

unString eventName, Function fn, Object scope )

removeListener的简写方法 移除事件处理函数。 ...

Defined By

Static Methods

Ext.Base

view source

addMembersObject members )STATIC

方法/属性添加到这个类的原型。 ...

Ext.Base

view source

addStaticsObject members )
Ext.BaseSTATIC

添加/重写这个类的静态属性。 ...

Ext.Base

view source

create( )
ObjectSTATIC

创建这个类的新实例。 ...

Ext.Base

view source

createAliasString/Object , String/Object origin )STATIC

创建现有的原型方法的别名。例如: Ext.define(‘My.cool.Class‘, { method1: function() { ... ...

Ext.Base

view source

getName( )
StringSTATIC

以字符串格式,获取当前类的名称。 ...

Defined By

Events

Ext.data.Tree

view source

appendExt.data.NodeInterface this, Ext.data.NodeInterface node, Number index, Object eOpts )

当添加一个新的子节点时触发 ...

Ext.data.Tree

view source

beforeappendExt.data.NodeInterface this, Ext.data.NodeInterface node, Object eOpts )

附加一个新的子节点之前触发,返回false取消附加。 ...

Ext.data.Tree

view source

beforecollapseExt.data.NodeInterface this, Object eOpts )

本节点折叠前触发。 ...

Ext.data.Tree

view source

beforeexpandExt.data.NodeInterface this, Object eOpts )

本节点展开前触发。 ...

Ext.data.Tree

view source

beforeinsertExt.data.NodeInterface this, Ext.data.NodeInterface node, Ext.data.NodeInterface refNode, Object eOpts )

在插入一个新的子节点之前触发,返回false取消插入。 ...

Ext.data.Tree

view source

beforemoveExt.data.NodeInterface this, Ext.data.NodeInterface oldParent, Ext.data.NodeInterface newParent, Number index, Object eOpts )

本节点被移动前触发。返回false取消移动。 ...

Ext.data.Tree

view source

beforeremoveExt.data.NodeInterface this, Ext.data.NodeInterface node, Boolean isMove, Object eOpts )

在移除一个新的子节点之前触发,返回false取消移除。 ...

Ext.data.Tree

view source

collapseExt.data.NodeInterface this, Object eOpts )

本节点折叠时触发。 ...

Ext.data.Tree

view source

expandExt.data.NodeInterface this, Object eOpts )

本节点展开时触发。 ...

Ext.data.Tree

view source

insertExt.data.NodeInterface this, Ext.data.NodeInterface node, Ext.data.NodeInterface refNode, Object eOpts )

当插入一个新的子节点时触发 ...

Ext.data.Tree

view source

moveExt.data.NodeInterface this, Ext.data.NodeInterface oldParent, Ext.data.NodeInterface newParent, Number index, Object eOpts )

本节点被移动时触发。 ...

Ext.data.Tree

view source

removeExt.data.NodeInterface this, Ext.data.NodeInterface node, Boolean isMove, Object eOpts )

当移除一个新的子节点时触发 ...

Ext.data.Tree

view source

rootchangeExt.data.Model root, Object eOpts )

根节点在树中改变时触发。 ...

Ext.data.Tree

view source

sortExt.data.NodeInterface this, Ext.data.NodeInterface[]
childNodes, Object eOpts )

本节点的子节点排序时触发 ...

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-08-27 05:52:22

搜集的Ext tree的属性方法与事件的相关文章

Ext.Net GridPanel (属性|方法|配置|详细介绍)

1.Ext.NET ---- GridPanel 主要配置项: store:表格的数据集 columns:表格列模式的配置数组,可自动创建ColumnModel列模式 autoExpandColumn:自动充满表格未用空间的列,参数为列id,该id不能为0 stripeRows:表格是否隔行换色,默认为false cm.colModel:表格的列模式,渲染表格时必须设置该配置项 sm.selModel:表格的选择模式,默认为Ext.grid.RowSelectionModel enableHdM

HTML5的Video标签的属性,方法和事件汇总

<video>标签的属性 src :视频的属性 poster:视频封面,没有播放时显示的图片 preload:预加载 autoplay:自动播放 loop:循环播放 controls:浏览器自带的控制条 width:视频宽度 height:视频高度 html 代码 <video id="media" src="http://www.sundxs.com/test.mp4" controls width="400px" heigt

HTML5的Video标签的属性,方法和事件

<video>标签的属性 src :视频的属性 poster:视频封面,没有播放时显示的图片 preload:预加载 autoplay:自动播放 loop:循环播放 controls:浏览器自带的控制条 width:视频宽度 height:视频高度 ##Media方法和属性:## HTMLVideoElement和HTMLAudioElement 均继承自HTMLMediaElement Media.error; //null:正常 Media.error.code; //1.用户终止 2.网

EXT.NET常用属性

Ext_数字输入框_Ext.form.NumberField: <mce:script type="text/javascript"><!--/*Ext.form.NumberField独有配置表:allowDecimals             Boolean             是否允许输入小数(默认true)allowNegative             Boolean             是否允许输入负数(默认true)baseChars    

Ext.grid.GridPanel属性及方法等

1.Ext.grid.GridPanel主要配置项:store:表格的数据集columns:表格列模式的配置数组,可自动创建ColumnModel列模式autoExpandColumn:自动充满表格未用空间的列,参数为列id,该id不能为0stripeRows:表格是否隔行换色,默认为falsecm.colModel:表格的列模式,渲染表格时必须设置该配置项sm.selModel:表格的选择模式,默认为Ext.grid.RowSelectionModelenableHdMenu:是否显示表头的上

[转]Ext.grid常用属性和方法

原文地址:http://blog.csdn.net/fm19901229/article/details/8113969 1.Ext.grid.GridPanel  主要配置项:  store:表格的数据集 columns:表格列模式的配置数组,可自动创建ColumnModel列模式 autoExpandColumn:自动充满表格未用空间的列,参数为列id,该id不能为0 stripeRows:表格是否隔行换色,默认为false cm.colModel:表格的列模式,渲染表格时必须设置该配置项 

Spring MVC-控制器(Controller)-属性方法名称解析器(Properties Method Name Resolver )示例(转载实践)

以下内容翻译自:https://www.tutorialspoint.com/springmvc/springmvc_propertiesmethodnameresolver.htm 说明:示例基于Spring MVC 4.1.6. 以下示例显示如何使用Spring Web MVC框架使用多操作控制器的属性方法名称解析方法.MultiActionController类有助于分别在单个控制器中将多个URL与其方法映射. package com.tutorialspoint; import java

Ext文本输入框:Ext.form.TextField属性汇总(转) (

本章介绍Ext.form.TextField组件的基本用法: <form id="form1" runat="server">    <div>    <div id="Bind_TextField"></div>    <br />    <div id="Bind_Button"></div>    <script type=&quo

ext 3.2 tree 在IE10中点击事件失效的bug

ext3.2 中的tree在IE中进行兼容性测试,遇到IE10时,无法点击,其他版本的IE(7.8.9.11)均正常.此bug是由于ext-all.js中的getAttributeNS方法不能兼容IE10出错引起的,下载了ext3.4,这里的getAttributeNS 被重写了,将3.4中的方法写入3.2中的ext-all.js文件中,IE10中tree恢复正常. 修改前: getAttributeNS: Ext.isIE ? function(s, q) { var t = this.dom