在组件标记周围添加滚动条

时间:2011-08-26 21:27:43

标签: flex flex4.5

我有一个如下所示的组标记,但我收到错误:'标量值节点可能不是特定于州的'

<s:Group includeIn="newTask,branchingGroup,model_chain,model,condition">

    <components:NewTask id="taskId" includeIn="newTask"/>
    <components:NewBranchingGroup id="branchId" includeIn="branchingGroup"/>
    <components:NewModelChain id="modelId" includeIn="model_chain" width="100%"/>
    <components:Condition id="conditionId" includeIn="condition"/>
    <s:Scroller>
    <components:NewModel id="modelNId" includeIn="model" width="100%"/>
    </s:Scroller>

</s:Group>

实际上,由于尝试在最后一个组件标记周围添加滚动条组件,我收到了此错误。无论如何我能避免这个错误吗?

1 个答案:

答案 0 :(得分:5)

你可能已经解决了这个问题,但我会回答它以供将来参考。

不允许在滚动条中包含特定于州的(includeIn)元素。我建议改为将includeIn移动到滚动条。

<s:Scroller includeIn="model">
   <components:NewModel id="modelNId" width="100%"/>
</s:Scroller>