ASTreeView 1.3.0 Release Notes

By | November 22, 2009

Just back from a trip to Santorini, Barcelona and Athens. 🙂

More photos at: http://www.jinweijie.com/europetrip2009

Back to the topic, the ASTreeView has been updated to 1.3.0, you may download at:

http://www.astreeview.com/astreeviewdemo/Download.aspx

New Features:

1. Html as TreeNodeText supported.
    In the new version, you may use html as tree node text, not only plain text.

image

2. Support escape edit/add input.
    Set the EnableEscapeInput property to enable this feature, default is true.

image

3.Multiline Edit Mode supported.
   Set the EnableMultiLineEdit property to enable this feature, , default is false.

image

4. Drag and drop complete event now is available, sample:

    <script type="text/javascript">
        //parameter must be "elem"
        function dndHandler( elem ){
            document.getElementById( "<%=divConsole.ClientID %>" ).innerHTML
                       += ( ">>node dragged:"
                            + elem.getAttribute("treeNodeValue")
                            + "<br />" );
        }
    </script>

and then set the OnNodeDragAndDropCompleteScript="dndHandler( elem )"

image

5. New property for ASTreeViewNode – EnableChildren

Set this property to false can disable dragging other nodes to the current node as child nodes. please refer sample 1 to see the effect.