:: Forum >>
Right Click Functionality
Is there any option for adding right click functionality on activewidgets table or how I can add right click on a row of the table
Sandeep Saha
Tuesday, July 18, 2006
The following code will copy the contents of the current cell to your clipboard. You should be able to work from there.
table.getCellTemplate().setEvent("oncontextmenu", raiseMenuEvent);
table.onCellContextMenu = function(event, col, row){
holdtext.innerText = table.getCellValue(col,row);
Copied = holdtext.createTextRange();
Copied.execCommand("Copy");
}
Mike
Tuesday, July 18, 2006
Well, that didn't answer the question.
how I can add right click on a row of the table?
Rob
Thursday, August 10, 2006
Alex (ActiveWidgets)
Friday, August 11, 2006
This topic is archived.
Back to support forum
Forum search