Gird事件机制初级读本


Posted in Javascript onMarch 10, 2007

原文地址 文章日期:2006/09/25/

 新版.32 的YUI-EXT包含了GIRD事件机制的重要升级。许多新事件现在可以用了,监听事件的机制也改变了(尽管它仍然向后兼容)。

侦听事件的方法

鉴于 YAHOO.util.CustomEvent只提供简单的访问,Grid和相关的对象扩展了新的方法来侦听事件,这些事件你应该是熟悉的。它们是:

  • addListener(eventName, fn, scope, override) - "eventName" should be one of the events defined below. "fn" is the function to call when the event occurs. "scope" is an optional object providing the scope (this) of the function. "override" is whether or not to apply that scope and is only there for backwards compatibility.
  • removeListener(eventName, fn, scope) -移除前先提交的事件侦听
  • on(eventName, fn, scope, override) - addListener 快捷方式

这些方法与YAHOO.uitl.Event一样,有相同的署名(signatures)。

onRowSelect事件的侦听:

var sm = grid.getSelectionModel(); 
sm.addListener('rowselect', myHandler);

这是GIRD暴露事件的列表和参数简介:

- "this" 指的是Grid对象;
- "e" 指的是 YAHOO.ext.EventObject (常规化事件对象) ,除了Drag & Drop对象是标准浏览器事件对象。
- "dd" 指的是Grid的YAHOO.ext.GridDD对象。

译注:下面事件解释以原文方式提供以便读者准确理解:

  • cellclick - (this, rowIndex, columnIndex, e) - Fires when a cell is clicked
  • celldblclick - (this, rowIndex, columnIndex, e) - Fires when a cell is double clicked
  • rowclick - (this, rowIndex, e) - Fires when a row is clicked
  • rowdblclick - (this, rowIndex, e) - Fires when a row is double clicked
  • headerclick - (this, columnIndex, e) - Fires when a header is clicked
  • rowcontextmenu - (this, rowIndex, e) - Fires when a row is right clicked
  • headercontextmenu - (this, columnIndex, e) - Fires when a header is right clicked
  • beforeedit - (this, rowIndex, columnIndex, e) - Fires just before editing is started on a cell
  • afteredit - (this, rowIndex, columnIndex, e) - Fires immediately after a cell is edited
  • bodyscroll - (scrollLeft, scrollTop) - Fires when the grid's body is scrolled
  • columnresize - (columnIndex, newSize) Fires when the user resizes a column.
  • startdrag - (this, dd, e) - Fires when row(s) start being dragged
  • enddrag - (this, dd, e) - Fires when a drag operation is complete
  • dragdrop - (this, dd, targetId, e) - Fires when dragged row(s) are dropped on a valid DD target
  • dragover - (this, dd, targetId, e) Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
  • dragenter - (this, dd, targetId, e) - Fires when the dragged row(s) first cross another DD target while being dragged
  • dragout - (this, dd, targetId, e) - Fires when the dragged row(s) leave another DD target while being dragged

Gird事件的例子

function onCellClick(grid, rowIndex, colIndex, e){  
 alert('Cell at row ' + rowIndex + ', column ' + colIndex + ' was clicked!'); 
 } 
 var grid = ... // 这里注册事件 grid.addListener('cellclick', onCellClick);

 

普通Grid事件
Since there is no way to envision everything you may want to do with the grid, I've also exposed direct access to many of the grid's raw events. All of these events pass one parameter to their handler: "e" a YAHOO.ext.EventObject.
  • click
  • dblclick
  • mousedown
  • mouseup
  • mouseover
  • mouseout
  • keypress
  • keydown
LoadableDataModel (from which XMLDataModel and JSONDataModel are derived) picked up a useful new event:
beforeload - Fires right before the model starts fetching remote data.
You could use this event combined with the load event to hide/show a loading indicator.
var img = getEl('loading-indicator'); var dm = grid.getDataModel(); dm.addListener('beforeload', img.show, img, true); dm.addListener('load', img.hide, img, true);
Hopefully this can get you started with the new event system. If you have any questions, feel free to post in the Help Forum and I will help you out.
Jack
Javascript 相关文章推荐
TopList标签和JavaScript结合两例
Aug 12 Javascript
用JavaScript实现UrlEncode和UrlDecode的脚本代码
Jul 23 Javascript
jquery调用asp.net 页面后台的实现代码
Apr 27 Javascript
javascript 控制input只允许输入的各种指定内容
Jun 19 Javascript
使用jquery.qrcode生成彩色二维码实例
Aug 08 Javascript
js判断滚动条是否已到页面最底部或顶部实例
Nov 20 Javascript
超级简单的jquery操作表格方法
Dec 15 Javascript
JS实现双击编辑可修改状态的方法
Aug 14 Javascript
JQuery菜单效果的两个实例讲解(3)
Sep 17 Javascript
jQuery 3.0 的 setter和getter 模式详解
Jul 11 Javascript
js中document.referrer实现移动端返回上一页
Feb 22 Javascript
在vue中使用Base64转码的案例
Aug 07 Javascript
Gird组件 Part-3:范例RSSFeed Viewer
Mar 10 #Javascript
对YUI扩展的Gird组件 Part-2
Mar 10 #Javascript
对YUI扩展的Gird组件 Part-1
Mar 10 #Javascript
学习YUI.Ext第七日-View&JSONView Part Two-一个画室网站的案例
Mar 10 #Javascript
学习YUI.Ext 第六天--关于树TreePanel(Part 2异步获取节点)
Mar 10 #Javascript
学习YUI.Ext 第七天--关于View&JSONView
Mar 10 #Javascript
学习YUI.Ext 第六天--关于树TreePanel(Part 1)
Mar 10 #Javascript
You might like
php中获取主机名、协议及IP地址的方法
2014/11/18 PHP
Zend Framework创建自己的动作助手详解
2016/03/05 PHP
thinkPHP实现的联动菜单功能详解
2017/05/05 PHP
Laravel实现表单提交
2017/05/07 PHP
js不是基础的基础
2006/12/24 Javascript
打印json对象的内容及JSON.stringify函数应用
2013/03/29 Javascript
Json序列化和反序列化方法解析
2013/12/19 Javascript
jquery获取选中的文本和值的方法
2014/07/08 Javascript
JavaScript数组和循环详解
2015/04/27 Javascript
jquery实现的蓝色二级导航条效果代码
2015/08/24 Javascript
jQuery 1.9.1源码分析系列(十)事件系统之主动触发事件和模拟冒泡处理
2015/11/24 Javascript
有关文件上传 非ajax提交 得到后台数据问题
2016/10/12 Javascript
Vue键盘事件用法总结
2017/04/18 Javascript
vue实现滑动到底部加载更多效果
2020/10/27 Javascript
js调用网络摄像头的方法
2020/12/05 Javascript
python自定义类并使用的方法
2015/05/07 Python
Python中的rjust()方法使用详解
2015/05/19 Python
轻松掌握python设计模式之访问者模式
2016/11/18 Python
Python原始字符串与Unicode字符串操作符用法实例分析
2017/07/22 Python
Python KMeans聚类问题分析
2018/02/23 Python
Python 经典面试题 21 道【不可错过】
2018/09/21 Python
Python中staticmethod和classmethod的作用与区别
2018/10/11 Python
Python批量修改图片分辨率的实例代码
2019/07/04 Python
pandas中的series数据类型详解
2019/07/06 Python
Python的log日志功能及设置方法
2019/07/11 Python
使用python批量修改文件名的方法(视频合并时)
2020/03/24 Python
CSS3制作酷炫的三维相册效果
2016/07/01 HTML / CSS
英国度假别墅预订:Sykes Cottages
2017/06/12 全球购物
Expedia印度:您的一站式在线旅游网站
2017/08/24 全球购物
Bibloo匈牙利:女装、男装、童装及鞋子和配饰
2019/04/14 全球购物
俄罗斯卫浴采暖及维修用品超级市场:Dkrussia
2020/05/12 全球购物
劲霸男装广告词改编版
2014/03/21 职场文书
机械系毕业生求职信
2014/05/28 职场文书
2014年国庆节广播稿
2014/09/19 职场文书
2016元旦晚会主持词
2015/07/01 职场文书
浅谈JS的原型和原型链
2021/06/04 Javascript