cfgrid和cfajaximport mouseover

时间:2009-07-16 19:09:44

标签: coldfusion cfgrid

我有以下内容:

<cfajaximport/>
<html>

<head>
<script>

myf = function(data,cellmd,record,row,col,store) {
 if(data == "Product 4")
return "<b>" + data + "</b>";       
else  return data;
}
testgrid = function() {
mygrid = ColdFusion.Grid.getGridObject('data');
ds = mygrid.getDataSource();
cm = mygrid.getColumnModel();
cm.setRenderer(0, Ext.util.Format.usMoney);
cm.setRenderer(1,myf);

}

</script>
</head>

 <body>

<cfset data = queryNew("price,product")>
<cfloop from=1 to=10 index="x">
<cfset total = randRange(20,100) & "." & randRange(1,99)>
<cfset product = "Product #X#">
<cfset queryAddRow(data)>
<cfset querySetCell(data, "price", total+0, x)>
<cfset querySetCell(data, "product", product, x)>
</cfloop>

  <cfform name="test">
  <cfgrid autowidth="true" name="data" format="html" query="data" width="600">
   <cfgridcolumn name="price" header="Price">
   <cfgridcolumn name="product" header="Product">
   </cfgrid>
   </cfform>

   <cfset ajaxOnLoad("testgrid")>
     </body>
  </html>

从Raymond Camden的博客中挑选出来。我需要以某种方式将鼠标悬停事件添加到产品列以显示产品详细信息。 (比如费用)。

有关如何实施此活动的任何帮助?

1 个答案:

答案 0 :(得分:0)

我最终在查询单元格中创建了html。

<cfset product = 

'<a href="##" onMouseOver="javascript:showWin(''dsp_productDetails.cfm?pid='' & Product#x# & '') onMouseOut="javascript:cleanup()">' & Product#x# & '</a>'>

否则,你需要玩extJs。