1
有沒有什麼方法可以修復Panel的大小以佔用其列中的完整空間而不是包裹內容?GWTBootstrap3相當於android的「匹配父項」
我的父列中並排放置了2個面板 - 一個用於堆疊Navpils菜單(具有可變數量的項目),另一個用於顯示基於菜單選項的數據。我需要數據面板來匹配菜單面板的高度。
這裏是代碼的相關章節:
<b:Column size="MD_3">
<b:Panel>
<b:PanelHeader>
<b:Heading size="H3" text="Services" />
</b:PanelHeader>
<b:PanelBody>
<b:NavPills stacked="true">
<b:AnchorListItem text="ClockService" ui:field="clockService" />
<b:AnchorListItem text="CloudService" ui:field="cloudService" />
<b:AnchorListItem text="CommandService" ui:field="commandService" />
<b:AnchorListItem text="WebConsole" ui:field="webConsole" />
<b:AnchorListItem text="DataService" ui:field="dataService" />
<b:AnchorListItem text="MqttDataTransport" ui:field="mqttDataTransport" />
<b:AnchorListItem text="SslManagerService" ui:field="sslManagerService" />
<b:AnchorListItem text="WatchdogService" ui:field="watchdogService" />
</b:NavPills>
</b:PanelBody>
</b:Panel>
</b:Column>
<b:Column size="MD_9">
<b:Panel ui:field="contentPanel">
<b:PanelHeader ui:field="contentPanelHeader">
</b:PanelHeader>
<b:PanelBody ui:field="contentPanelBody">
</b:PanelBody>
</b:Panel>
</b:Column>
任何幫助或建議表示讚賞,我也願意接受使用其他部件,只要他們提供了類似的觀點。
但是色譜柱尺寸只考慮寬度。我需要我的面板來匹配它內部的列的高度。 我的父列中並排放置了2個面板 - 一個用於堆疊Navpils菜單(具有可變數量的項目),另一個用於顯示基於菜單選項的數據。 我需要數據面板來匹配菜單面板的高度。 – Rohit
請更新問題以包含所有這些重要信息並添加一些代碼,否則很難提出任何合理的建議。 –
當然,完成了! – Rohit