Grid double click event

Hi I try to add double click event in Grid, so  I add code in Grid method. But can not trigger click event  and  have error message . Code---------------------------------------------------------------------------------------- var virtualGridNode = document.createDocumentFragment(); clientControlsFactory.createControl("Aras.Client.Controls.Public.GridContainer", {connectNode: virtualGridNode}, function(control) { grid = gridApplet = control; clientControlsFactory.on(grid, { "gridDoubleClick": onDoubleClick }); }); function onDoubleClick(row) { //show identity form aras.uiShowItem('Identity', "DF0072B6E3CB4A0899FC57160DBF856F"); return true; } --------------------------------------------------------------------------------------------- Error Message: Uncaught TypeError: window[this.instanceName].onXmlLoaded is not a function ../javascript/Aras/Client/Controls/Experimental/ExcelGridContainer.js:299 Uncaught TypeError: window[this.instanceName].onXmlLoaded is not a function at ConfigurableGrid.<anonymous> (include.aspx?classes=ScriptSet2,XmlDocument,ConfigurableGrid,MLDialogHelper:5604) at Object._37c [as gridXmlLoaded] (include.aspx?classes=/dojo.js:86) at Object._addXMLRows (../javascript/Aras/Client/Controls/Experimental/ExcelGridContainer.js:299) at Object.initXML (../javascript/Aras/Client/Controls/Experimental/ExcelGridContainer.js:559) at Object.reloadData (../javascript/Aras/Client/Controls/Experimental/ExcelGridContainer.js:423) at ConfigurableGrid_populateGrid [as populateGrid] (include.aspx?classes=ScriptSet2,XmlDocument,ConfigurableGrid,MLDialogHelper:7612) at ConfigurableGrid_runQuery [as runQuery] (include.aspx?classes=ScriptSet2,XmlDocument,ConfigurableGrid,MLDialogHelper:7925) at onload_handler (ConfigurableGrid.html?grid=9397063BE3F94730A08E28DCDEF301ED:250)