headerlayout¶
-
class
webix.ui.
headerlayout
(data)¶ Arguments: - data (object) – A configuration object
Headerlayout view.
References¶
- views
accordion()
.- helpers
protoUI()
.
External references¶
Code¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | webix.protoUI({
name:"headerlayout",
defaults:{
type: "accordion",
multi:"mixed",
collapsed:false
}
}, webix.ui.accordion);
/*
Behavior:DND - low-level dnd handling
@export
getContext
addDrop
addDrag
DND master can define next handlers
onCreateDrag
onDragIng
onDragOut
onDrag
onDrop
all are optional
*/
|