Categories | Question details Back To List | ||
Call out on grid Hi, We are using grid package and it's terrific. Is there any Call-out function on grid? Basically a new grid will be popup when certain row of a grid is right or left clicked. Thanks! Answer posted by Support on May 07, 2008 02:09 >>Is there any Call-out function on grid? Grid provides about 40 inner events http://dhtmlx.com/docs/products/dhtmlxGrid/doc/events.html#grid_api_ev >> grid will be popup when certain row of a grid is right or left clicked. mygrid.attachEvent("onRowSelect",function(id,ind){ //any code here }) mygrid.attachEvent("onRightClick",function(id,ind){ //any code here }) Also please check next built in functionality which may help http://dhtmlx.com/docs/products/dhtmlxGrid/samples/interaction_other_components/pro_linked_grid.html?un=1210152388000 |