我想顯示一個網格,但在List of customers
和Customer Id, active, firstname last name, email address
之間添加一個面板。在標籤面板中添加一個面板
我需要在這兩個組件之間添加一個面板。並且在該面板中,我將擁有不同的UI元素。我怎樣才能做到這一點 ?
我想顯示一個網格,但在List of customers
和Customer Id, active, firstname last name, email address
之間添加一個面板。在標籤面板中添加一個面板
我需要在這兩個組件之間添加一個面板。並且在該面板中,我將擁有不同的UI元素。我怎樣才能做到這一點 ?
好吧,我相信你只是一個的costumers的標題列表格,最簡單的方法是有一個面板和一個網格(網格,沒有標題)與標題另一個面板。
{
xtype: 'panel',
title: 'List of customers',
layout:'border',
items: [
{
//the panel you want
xtype: 'panel',
region: 'north',
height: 100,
},
{
//your current grid without a title
xtype: 'gridpanel',
region: 'center',
height: 300,
}
]
}
我需要添加面板,標題爲「List if Customers」和垂直佈局。在它中你需要添加兩個項目:你的新面板和那個網格(沒有標題)。你會得到你想要的。
{
xtype: 'panel',
layout: {
type:"vbox",
pack:"start",
align:"stretch"}
title:"List of Customers",
items: [ ... your new panel and grid .. ]
}
需要更多的ExtJS的標籤.. – Ben
沒有幫你嗎? –
爲什麼這麼多extjs標籤? extjs3與你的問題甚至沒有關係。 – Ben