tags:

views:

25

answers:

1

I have datagrid with data populated.when user clicks on one particular cell of one column ,popup window has to be dispayed.And also same requirment is there for another column also.I could not find how to do it for cell.doubleclick and click properties are applicable to row selection.Can any one give solution for this requirement.

A: 

Listen to the itemClick event of the DataGrid - it dispatches an event of type ListEvent that has columnIndex and rowIndex properties.

If for some reason it doesn't work, you can use a custom itemRenderer and dispatch a custom event using its listData.owner property.

Amarghosh