我正在使用 Webix Jet 创建一个简单的文件管理器,但我无法multiselect
通过拖放应用
例如:
{ view: "dataview", id: "fileV", type: "fileView", multiselect: true, drag: true, ... }
使用简单select
的一切都很好,那么有什么问题呢?
我正在使用 Webix Jet 创建一个简单的文件管理器,但我无法multiselect
通过拖放应用
例如:
{ view: "dataview", id: "fileV", type: "fileView", multiselect: true, drag: true, ... }
使用简单select
的一切都很好,那么有什么问题呢?
你怎么看?
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
这是你需要的吗?