0
我正在使用帶有兩個選項卡的dijit/layout/TabContainer。我創建它們是這樣的:dojo tab容器獲得最大標籤的寬度
<div dojoType="dijit.layout.TabContainer" doLayout="false">
<div dojoType="dijit.layout.ContentPane" title="First tab" style="background-color:rgb(237,240,246)" doLayout="false"> Some dynamic content here </div>
<div dojoType="dijit.layout.ContentPane" title="Second tab" style="background- color:rgb(237,240,246)" doLayout="false"> Some dynamic content here </div>
</div>
這適用於Firefox,Chrome和IE9,但在Safari上無法正確顯示ipad。第一個選項卡第一次正確顯示,但第二個選項卡的寬度較大。我相信這不應該發生,因爲我已經添加了doLayout標誌。我不知道它是否重要,但我正在使用xpages框架的dojo。
非常感謝!