HDividedBox 手风琴列表调整大小
我想使用 HDividedBox,但遇到调整大小问题。 事实上,当我减少手风琴组件的宽度时,列表并没有减少。 在下面找到我的代码
<mx:HDividedBox width="100%"
height="100%"
color="0x323232">
<mx:Accordion width="40%" height="100%" >
<s:NavigatorContent width="100%" label="Courriers">
<s:List id="liCourriers" borderVisible="false"
width="100%"
change="itemCOIndexChangeHandler(event)" dataProvider="{DP_PAT_COURR}">
</s:List>
</s:NavigatorContent>
<s:NavigatorContent width="100%" height="100%" label="Courriers Images">
</s:NavigatorContent>
<s:NavigatorContent width="100%" height="100%" label="Docs Entrant">
</s:NavigatorContent>
</mx:Accordion>
<mx:HTML height="100%"
width="60%"
id="coContent"
borderVisible="true"
>
</mx:HTML>
</mx:HDividedBox>
感谢您的帮助
I'd to use a HDividedBox and I have resize problem.
Indeed, when I reduce the width of accordion component, the list is not reduce.
Find below my code
<mx:HDividedBox width="100%"
height="100%"
color="0x323232">
<mx:Accordion width="40%" height="100%" >
<s:NavigatorContent width="100%" label="Courriers">
<s:List id="liCourriers" borderVisible="false"
width="100%"
change="itemCOIndexChangeHandler(event)" dataProvider="{DP_PAT_COURR}">
</s:List>
</s:NavigatorContent>
<s:NavigatorContent width="100%" height="100%" label="Courriers Images">
</s:NavigatorContent>
<s:NavigatorContent width="100%" height="100%" label="Docs Entrant">
</s:NavigatorContent>
</mx:Accordion>
<mx:HTML height="100%"
width="60%"
id="coContent"
borderVisible="true"
>
</mx:HTML>
</mx:HDividedBox>
Thanks for helping
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将列表的高度和 NavigatorContent 设置为 100%。
抱歉我之前的回复。事实上,我把“宽度”这个词误读成了“高度”:(
我尝试重现该问题,发现在特定级别上,列表不会进一步缩小。
Try to give height to your list and NavigatorContent to 100 percent.
Sorry for my earlier response. Indeed I misread the word WIDTH as height :(
I tried to reproduce the problem and found that at a particular level, list does not shrink any further.