I have a form to the right of my menu. Is it possible to re

I have a form to the right of my menu. Is it possible
to retrieve the user data from the object to the form when clicking on the
object?

The
tree has onClick event so you need to write something similar to:

function
my_func(itemId){
                var z=
document.forms[0].my_input;
                my_input.value=tree.getUserData(itemId,“name_of_user_data”);
}
tree.setOnClickHandler(my_func);