1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
| <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml"
xmlns:views="com.axway.osredi.flex.views.*"
xmlns:controllers="com.axway.osredi.flex.controllers.*"
backgroundColor="#ffd5ff" width="100%" height="100%"
creationComplete="{propositionController.initialize(this)}"
borderStyle="inset">
<controllers:PropositionController id="propositionController"/>
<mx:VBox id="contenant" height="100%" width="100%">
<mx:HBox id="hb_1" width="100%" height="5%">
<mx:CheckBox id="checkbox" width="30" height="100%"/>
<mx:Label text="Proposition :" height="100%" fontWeight="bold" fontSize="11" width="91" paddingTop="13"/>
<mx:Spacer height="100%" width="70%"/>
<mx:VBox id="detailMatching" width="25%" height="100%" visible="false">
<mx:HBox id="detailLettrageOK" width="100%" height="50%">
<mx:Label text="Lettré par : " fontWeight="bold"/>
<mx:Label id="userLettrage" fontWeight="bold"/>
<mx:Label text=" Le : " fontWeight="bold"/>
<mx:Label id="dateLettrage" fontWeight="bold"/>
</mx:HBox>
<mx:HBox id="detailDelettrageOK" width="100%" height="50%" visible="false">
<mx:Label text="Delettré par : " fontWeight="bold"/>
<mx:Label id="userDelettrage" fontWeight="bold"/>
<mx:Label text=" Le : " fontWeight="bold"/>
<mx:Label id="dateDelettrage" fontWeight="bold"/>
</mx:HBox>
</mx:VBox>
</mx:HBox>
<mx:HDividedBox height="90%" width="100%">
<mx:Panel id="panelFacture" width="50%" height="100%" title="Factures" textAlign="left">
<mx:DataGrid id="dgFacture" width="100%" height="100%" allowMultipleSelection="true" horizontalScrollPolicy="auto" dragMoveEnabled="true" dragEnabled="true" dropEnabled="false">
<mx:columns>
<mx:DataGridColumn/>
</mx:columns>
</mx:DataGrid>
</mx:Panel>
<mx:Panel id="panelRebut" width="50%" height="100%" title="Rebut" textAlign="left">
<mx:DataGrid id="dgRebut" width="100%" height="100%" allowMultipleSelection="true" horizontalScrollPolicy="auto" dragMoveEnabled="true" dragEnabled="true" dropEnabled="false">
<mx:columns>
<mx:DataGridColumn/>
</mx:columns>
</mx:DataGrid>
</mx:Panel>
</mx:HDividedBox>
<mx:HBox width="100%" height="5%">
<mx:Button id="duplicateLine" label="Dupliquer une ligne" enabled="true"/>
<mx:Button id="deleteLine" label="Supprimer une ligne" enabled="true"/>
</mx:HBox>
</mx:VBox>
</mx:VBox> |
Partager