onclick event ion grid

hi ,

how do i add onclick event in particular column,column has int value so sorting also should be taken care off.

If you want to handle click on gird header for specific column


grid.attachEvent(“onHeaderClick”,function(ind){
    if (ind ==INDEX){
       // do anything here
    }
    return true;
})


If you need to handle click on any data cell


grid.setOnRowSelectHandler(function(id,ind){

    if (ind ==INDEX){

       // do anything here

    }

    return true;

},true)