2012-05-29 123 views
0

我有一個包含20個項目的列表,我有4個按鈕,分別是button1,button2,button3和button4。現在我想顯示列表的前5項,當我點擊按鈕1和第二個5項時,當我點擊按鈕2等,如何做到這一點?任何人都可以幫我嗎?如何在Flex中顯示從列表中選擇的項目數量4.6

<s:List id="list" visible="true" height="105" x="100" y="100"> 
    <s:dataProvider> 
     <s:ArrayCollection> 
      <fx:String>1</fx:String> 
      <fx:String>2</fx:String> 
      <fx:String>3</fx:String> 
      <fx:String>4</fx:String> 
      <fx:String>5</fx:String> 
      <fx:String>6</fx:String> 
      <fx:String>7</fx:String> 
      <fx:String>8</fx:String> 
      <fx:String>9</fx:String> 
      <fx:String>10</fx:String> 
      <fx:String>11</fx:String> 
      <fx:String>12</fx:String>    
      <fx:String>13</fx:String> 
      <fx:String>14</fx:String> 
      <fx:String>15</fx:String> 
      <fx:String>16</fx:String> 
      <fx:String>17</fx:String> 
      <fx:String>18</fx:String> 
      <fx:String>19</fx:String> 
      <fx:String>20</fx:String> 
     </s:ArrayCollection> 
    </s:dataProvider> 
</s:List> 

回答

相關問題