Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
<script type=
"text/javascript"
>
var
Cell;
function
RowCreated(sender, eventArgs) {
dataItem = eventArgs.get_gridDataItem();
//traverse the cells in the created client row object and attach dblclick handler for each of them
for
(
i = 0; i < dataItem.get_element().cells.length; i++) {
cell = dataItem.get_element().cells[i];
if
(cell) {
$addHandler(cell,
"dblclick"
, Function.createDelegate(cell, ShowColumnEditor));
}
ShowColumnEditor() {
Cell =
this
;
alert(Cell.innerHTML);
</script>