Advertisement
Guest User

Untitled

a guest
Nov 1st, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MXML 1.86 KB | None | 0 0
  1.  
  2.     <List Id="ageList">
  3.         <Item Id="1" Var="18,24,150"><Text></Text>18-24</Item>
  4.         <Item Id="2" Var="25,34,300"><Text></Text>25-34</Item>
  5.         <Item Id="3" Var="35,44,300"><Text></Text>35-44</Item>
  6.         <Item Id="4" Var="45,55,250"><Text></Text>45-55</Item>
  7.     </List>
  8.  
  9.     <List Id="sampleList">
  10.         <Item Id="1" Var="Основная,1000"><Text>Main</Text></Item>
  11.         <Item Id="2" Var="Дополнительная,300"><Text>Boost</Text></Item>
  12.     </List>
  13.  
  14.     <List Id="strataList">
  15.         <Item Id="1" Var="Москва,300"><Text>MOS</Text></Item>
  16.         <Item Id="2" Var="Города 1 млн.,350"><Text>1_mil_more</Text></Item>
  17.         <Item Id="3" Var="Города 500 тыс.,350"><Text>500k</Text></Item>
  18.     </List>
  19.  
  20.     <!--#block Quota's (on) -->
  21.  
  22.     <Repeat List="ageList">
  23.         <Quota Id="age_@ID" Description="возраст: @Var(0)-@Var(1)" Apply="RespInfo" Limit="@Var(2)">
  24.             <Item Page="pre_data" Question="pre_age" Answer="1" Value="@Var(0)" Operator="MoreEquals"/>
  25.             <Item Page="pre_data" Question="pre_age" Answer="1" Value="@Var(1)" Operator="LessEquals"/>
  26.             <Item Page="RespInfo" Question="sample" Answer="1"/>
  27.         </Quota>
  28.     </Repeat>
  29.  
  30.     <Repeat List="strataList">
  31.         <Quota Id="strata_@Pure" Description="страта: @Var(0)" Apply="S3" Limit="@Var(1)">   
  32.             <Item Page="S3" Question="strata" Answer="@ID"/>
  33.             <Item Page="RespInfo" Question="sample" Answer="1"/>
  34.         </Quota>
  35.     </Repeat>
  36.  
  37.     <Quota Id="total_users_sunprotect" Description="Буст" Apply="Q1" Limit="300">
  38.         <Item Page="Q1" Question="Q1" Answer="1"/>
  39.         <Item Page="RespInfo" Question="sample" Answer="2"/>
  40.     </Quota>
  41.  
  42.     <!--#endblock-->
  43.  
  44.     <Page Id="RespInfo">
  45.         <Filter>false;</Filter>
  46.         <Question Id="sample" Type="RadioButton" Store="sampleSelected">
  47.             <Header>Выборка</Header>
  48.             <Repeat List="sampleList">
  49.                 <Answer Id="@ID"><Text>@Text</Text></Answer>
  50.             </Repeat>
  51.         </Question>
  52.     </Page>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement