博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Dragging and dropping items in a Flex Tree control
阅读量:6243 次
发布时间:2019-06-22

本文共 2295 字,大约阅读时间需要 7 分钟。

The following example shows you how you can reorder nodes in a Flex Tree control by setting the 
dragEnabled
dropEnabled
, and 
dragMoveEnabled
 properties

<?
xml version="1.0" encoding="utf-8"
?>
<!--
 http://blog.flexexamples.com/2007/11/29/dragging-and-dropping-items-in-a-flex-tree-control/ 
-->
<
mx:Application 
xmlns:mx
="http://www.adobe.com/2006/mxml"
        layout
="vertical"
        verticalAlign
="middle"
        backgroundColor
="white"
>
    
<
mx:XML 
id
="xmlDP"
>
        
<
root
>
            
<
para 
label
="Paragraph 1"
 isBranch
="true"
>
                
<
node 
label
="Lorem ipsum dolor sit amet, consectetuer adipiscing elit."
 
/>
                
<
node 
label
="Cras porttitor nunc a pede."
 
/>
                
<
node 
label
="Nulla ac magna non risus accumsan egestas."
 
/>
                
<
node 
label
="Aenean pretium porta felis."
 
/>
                
<
node 
label
="Sed massa."
 
/>
            
</
para
>
            
<
para 
label
="Paragraph 2"
 isBranch
="true"
>
                
<
node 
label
="Pellentesque pretium eros id odio tincidunt lobortis."
 
/>
                
<
node 
label
="Praesent vitae dolor eget nisl adipiscing pretium."
 
/>
                
<
node 
label
="Fusce nonummy dignissim risus."
 
/>
                
<
node 
label
="Nunc sodales, lectus vitae nonummy cursus, augue lectus auctor orci, vel aliquet enim neque vel eros."
 
/>
                
<
node 
label
="Donec laoreet euismod libero."
 
/>
                
<
node 
label
="Etiam ut lectus."
 
/>
            
</
para
>
            
<
para 
label
="Paragraph 3"
 isBranch
="true"
>
                
<
node 
label
="Maecenas ut nibh eu diam viverra suscipit."
 
/>
                
<
node 
label
="Pellentesque auctor, turpis vel lobortis suscipit, neque tortor tristique nibh, venenatis suscipit nisl nisl eget magna."
 
/>
                
<
node 
label
="Donec interdum."
 
/>
                
<
node 
label
="Praesent diam."
 
/>
            
</
para
>
            
<
para 
label
="Paragraph 4"
 isBranch
="true"
>
                
<
node 
label
="Proin nulla."
 
/>
                
<
node 
label
="Morbi tincidunt, sapien in sollicitudin venenatis, nibh tortor pretium ante, non pharetra urna dolor et libero."
 
/>
                
<
node 
label
="In malesuada risus at neque."
 
/>
            
</
para
>
            
<
para 
label
="Paragraph 5"
 isBranch
="true"
 
/>
        
</
root
>
    
</
mx:XML
>
    
<
mx:Tree 
id
="tree"
            dataProvider
="{xmlDP}"
            labelField
="@label"
            showRoot
="false"
            verticalScrollPolicy
="on"
            alternatingItemColors
="[#FFFFFF,#EEEEEE]"
            showScrollTips
="true"
            dragEnabled
="true"
            dropEnabled
="true"
            dragMoveEnabled
="true"
            width
="300"
            rowCount
="6"
 
/>
</
mx:Application
>
    本文转自 OldHawk  博客园博客,原文链接:http://www.cnblogs.com/taobataoma/archive/2008/01/11/1034817.html
,如需转载请自行联系原作者
你可能感兴趣的文章
《 自动化测试最佳实践:来自全球的经典自动化测试案例解析》一一3.1 本案例研究的背景...
查看>>
哈工大在CoNLL上斩获全球第四,车万翔博士详解背后的技术细节
查看>>
阿里钉钉VS企业微信 谁才是企业级一哥?
查看>>
2015-2020智慧城市物联网市场复合年增长率达23.2%
查看>>
做好数据分析让物联网数据价值最大化
查看>>
OpenStack Days走进北京 主角是用户
查看>>
JVM问题诊断常用命令:jinfo,jmap,jstack
查看>>
叶成辉成神州控股新任CEO 曾在IBM/EMC任职
查看>>
中小企业客户营收增长将成微博2016年主推动力
查看>>
四川能投成功进军智慧城市投资市场
查看>>
雅虎公开三封收到的FBI国家安全信函
查看>>
云计算在大数据形式下的发展
查看>>
如何更好地进行机房项目的控制成本
查看>>
爱立信高通中兴等成立Avanci专利授权平台 旨在加速物联网发展
查看>>
美情报公司:勒索病毒WannaCry的创作者可能是中国人
查看>>
华科技:以市场为导向 以用户体验为标准
查看>>
诺基亚携手Facebook联合开展跨大西洋现场测试
查看>>
如何检查MySQL数据库的主从延时?
查看>>
红炜:改变光伏电站融资难也需水到渠成
查看>>
三星用户迎利好 三星将推月度安全更新
查看>>