我想创建一个带有子菜单和下拉菜单的侧边栏。在HTML中,我会这样做:
<div class="sidenav">
<a href="#about">About</a>
<a href="#services">Services</a>
<a href="#clients">Clients</a>
<a href="#contact">Contact</a>
<button class="dropdown-btn">Dropdown
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-container">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
<a href="#contact">Search</a>
</div>
但是在ExtJS 6.2.0版中如何实现呢?
编辑:ExtJS中所有内容如下:
var store = Ext.create('Ext.data.TreeStore', {
root: {
expanded: true,
children: [
{ text: 'detention', leaf: true },
{ text: 'homework', expanded: true, children: [
{ text: 'book report', leaf: true },
{ text: 'algebra', leaf: true}
] },
{ text: 'buy lottery tickets', leaf: true }
]
}
});
Ext.create('Ext.tree.Panel', {
title: 'Simple Tree',
width: 200,
height: 200,
store: store,
rootVisible: false,
renderTo: Ext.getBody()
});
这是我不想要的(树不是我想要的,没有下拉列表按钮!!请参阅,HTML版本)
1条答案
按热度按时间yi0zb3m41#
您可以使用
button
,对于子菜单,您可以使用menu
。这是一把小提琴
下面是代码: