Hi,
Yes. It is. You will need to call this function:
http://www.essentialobjects.com/ViewDoc.aspx?t=JSDoc.Public.TreeView.getSelectedNode.htmlThe code will be something like this:
Code: JavaScript
window.alert(eo_GetObject("TreeView1").getSelectedNode().getText());
Note getSelectedNode returns a TreeNode object, which inherits from NavigationItem object, that's why you can call getText method even though you do not see getText on the TreeNode object in the reference section because the method is defined on the NavigationItem object.
You can find more details about how to use the client side API here:
http://www.essentialobjects.com/ViewDoc.aspx?t=clientapi_howto.htmlHope this helps.
Thanks