就比如说 table 中 当鼠标滑过每一行 都有提示信息
在 html 中 好实现 在 ext grid 里 怎么弄啊?
就比如说 table 中 当鼠标滑过每一行 都有提示信息
在 html 中 好实现 在 ext grid 里 怎么弄啊?
在列映射的时候就要设定渲染方式
[code="js"]
var colModel = new Ext.grid.ColumnModel([
{ header: "$ Sales", width: 100, sortable: true, renderer: heihei}
]);[/code]
渲染的函数写成如下:
[code="js"]function heihei(value, meta, rec, rowIdx, colIdx, ds){
return '
顶部需要加入[code="js"]Ext.QuickTips.init();[/code]
qtitle代表tip的标题, qtip代表内容。这时鼠标划过就会出现提示!