GoView and AJAX update panel

I am new to GoDiagram and am attempting to use a GoView with a Microsoft AJAX updatepanel. I would like for the GoView.objectdoubleclicked event to trigger the update method of the panel by setting the updatepaneltrigger to the event when the nopost property is set to true. Is this possible?

UpdatePanels shouldn't be a problem.
You can specify what JavaScript to execute when the user clicks on an IGoLabeledNode such as a GoNode or a GoLabeledLink by setting some of the following GoViewDataRenderer properties...
e.g.
goView1.DataRenderer.LabeledNodeDoubleClicked = "NodeDblClicked()";
Covered in more detail in GoWebIntro.doc.