Hi frJericho,
Can you explain your requirement in detail? The treeview is one of the editor toolbar item? Or is the html content what you are editing in editor?
If is second one, you can get the editor edit area document, once you get the editor document, you can use the normal javascript method to get any element of the document. It has the same functions as the html dom.
- Getting the Active Editor Document
- In order to find the active editor document, you would type:
-
- var editor1 = document.getElementById('<%= Editor1.ClientID%>').editor;
- var editwin = editor1.GetWindow();
- var editdoc = editwin.document;
Regards,
Ken