I need to be able to process the list of items within a container and determine their objType within a javascript call.
I know that I can get the objType out of the XML by making a request to the same page but doing an xmlexport, or by using REST services to get this information. It would be greatly preferrable to not need to call off to external sources, since I know the data is within the DOM.
I get the list of selected items (items that are chekced) using document.BrowseViewFrm.elements, and go through each one where (.checked) to end up with a "selected items list"
Within that list, the value is just the node ID. Is there a way for me to determine the obj type without resorting to making external calls? This is a function that is going to be executed frequently. Thanks in advance, should I find the solution while waiting for advice I will update this post.
Greg