我是新的extjs,只是卡在動態(百分比)高度在hbox設置。extjs集裝箱hbox高度100%
這裏是我的ExtJS的代碼
"xtype": "container",
"layout": "fit",
"width": "100%",
"height": "100%",
"cls": "dashboard-layout dashboard-layout-1-2",
"items": [
{
"xtype": "dashboardpanelcontainer",
"height": "45%"
},
{
"xtype": "container",
"layout": "fit",
"width": "100%",
"height": "45%",
"layout":
{
"type": "hbox",
"align": "stretch"
},
"items": [
{
"xtype": "dashboardpanelcontainer",
"flex": 1
},
{
"xtype": "ruban-dashboardpanelcontainer",
"flex": 1
}]
}]
代碼這個和平是工作的罰款,並設置高45%
"xtype": "dashboardpanelcontainer",
"height": "45%"
的容器「的xtype」第二項:「容器」的設置高度爲45%,但hbox項目不選擇這個45%,hbox項目的高度是0px
我不能使用「xtype」:「窗口」或「xtype」:「視口」需要裏面的「xtype」:「風ow「
任何幫助如何在我的情況下設置容器hbox項目高度的百分比45%。
如果我在hbox中添加項目的風格,它不是工作壓力太大
"xtype": "dashboardpanelcontainer",
"flex": 1,
"style":
{
"height": "100%"
}
感謝您的幫助
[在橫向盒ExtJS的100%的高度(可能重複http://stackoverflow.com/questions/21704630/extjs-100-height-in - 盒) – Akatum
我看到了,答案是誰的人可以使用「xtype」:「視口」,很不幸,我不能使用視口,我使用「xtype」:「容器」 – user2894127