回复 3楼angry003的帖子
此问题已经通过电话沟通。
hitTest获取到的是一个HitTestInfo类。
它包含列,行值,以及单元格类型等相关信息。
这个类请参考产品文档:
http://wijmo.gcpowertools.com.cn ... TestInfo.Class.html
hittext.col就是列索引,hittext.row就是索引。
您所有想获取的信息都可以通过hitestInfo,结合flexgrid的API获取到。
通过这两个可以拿到单元格值flexgrid.getCellData(hittext.row,hittext.col)
也可以拿到一行的值flexgrid.rows[hittext.row].dataItem
如果列名是name,那么就是flexgrid.rows[hittext.row].dataItem.name
如果是想获取列名,那么flexgrid.columns[hitext.col].name
拿到这些信息,您想拼成什么样的结构,您可以自己构造。
flexgrid的接口API请参考:
http://wijmo.gcpowertools.com.cn ... FlexGrid.Class.html |