The following code works, but I have a question.

<mx:Repeater id="weekRows" dataProvider="{weekStartsAry}" >
  <mx:HBox width="100%">
  <mx:Repeater id="dayCells" dataProvider="{parentApplication.daysAry}"
startingIndex="{weekRows.currentItem}" count="7">
  <mx:VBox width="14.25%" height="200" horizontalScrollPolicy="off">
    <mx:Label width="{parentDocument.width/7}"
text="{dayCells.currentItem}" includeInLayout="false"
truncateToFit="true" />
  </mx:VBox>
  </mx:Repeater>
  </mx:HBox>
</mx:Repeater>

My question is, to what container|control does 'parentDocument' refer?
I expected for the Label control that it's parent would be the VBox, but
this does not seem to be the case.


Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message.



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: http://www.houseoffusion.com/groups/Flex/message.cfm/messageid:4024
Subscription: http://www.houseoffusion.com/groups/Flex/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.37

Reply via email to