2015-11-03 68 views
1

我使用Webix喷气机创建一个简单的文件管理器,但我不能拖N - 下降多选在Webix喷气拖欧米茄下降

申请multiselect例如:

{ view: "dataview", id: "fileV", type: "fileView", multiselect: true, drag: true, ... } 

With easy select all works well,so what can be wrong?

回答

4

您怎么看?

webix.ui({ 
    view:"dataview", 
    id:"dataview1", 
    select:true, 
    multiselect:true, 
    type: { 
    height: 60 
    }, 
    drag:true, 
    template:"<div class='webix_strong'>#title#</div> Year: #year#, rank: #rank#", 
    data:[ 
    { id:1, title:"The Shawshank Redemption", year:1994, votes:678790, rating:9.2, rank:1}, 
    { id:2, title:"The Godfather", year:1972, votes:511495, rating:9.2, rank:2}, 
    { id:3, title:"The Godfather: Part II", year:1974, votes:319352, rating:9.0, rank:3}, 
    { id:4, title:"The Good, the Bad and the Ugly", year:1966, votes:213030, rating:8.9, rank:4}, 
    { id:5, title:"My Fair Lady",year:"1964",votes:"533,848",rating:"8,9",rank:"5"}, 
    { id:6, title:"12 Angry Men",year:"1957",votes:"164,558",rating:"8,9",rank:"6"} 
    ] 
}); 

段:http://webix.com/snippet/a56bce1d

这是你需要什么?

+0

哦,是的,谢谢!我是新来的,所以显然我在使用'multiselect'之前错过了'select:true'。这样愚蠢的错误。 – Loj