JavaScript select object

Is there a Javascript command that I can call to select an object within a GoView? I know I can do this in a post back with GoView1.Selection.Select(myObject);

But is this same type of action available in a Javascript/ClientSide call?

Any change in selection is going to have to pass through the server. There is a “selectall” postback action, but not one that is explicitly for selecting one object. You could do it by sending a “mouse gesture” action with the mousedown/mouseup over the object.

I would recommend implementing a custom GoViewDataRenderer that overrides HandleClientRequest in order to select the node that you want based on some key value that you pass in a call in the browser to the JavaScript function goRequest.