Flex中如何将NumericStepper控件作为DataGrid控件的一个编辑项目的例子

和前面的 Flex中如何通过设置editable属性创建一个可编辑的DataGrid控件的例子很相似,接下来的例子演示了Flex中,如何通过设置 DataGrid控件和 DataGridColumn 对象的 itemEditor和editorDataField属性,将NumericStepper控件作为DataGrid控件的一个编辑项目。
让我们先来看一下Demo(可以右键View Source或 点击这里察看源代码
下面是完整代码(或 点击这里查看):
Download: main.mxml
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
  3.         layout="vertical"
  4.         verticalAlign="middle"
  5.         backgroundColor="white">
  6.     <mx:ArrayCollection id="arrColl">
  7.         <mx:source>
  8.             <mx:Array>
  9.                 <mx:Object label="Student A" score="8" />
  10.                 <mx:Object label="Student B" score="4" />
  11.                 <mx:Object label="Student C" score="7" />
  12.                 <mx:Object label="Student D" score="8" />
  13.                 <mx:Object label="Student E" score="2" />
  14.                 <mx:Object label="Student F" score="6" />
  15.                 <mx:Object label="Student G" score="7" />
  16.                 <mx:Object label="Student H" score="7" />
  17.                 <mx:Object label="Student I" score="9" />
  18.                 <mx:Object label="Student J" score="8" />
  19.                 <mx:Object label="Student K" score="4" />
  20.                 <mx:Object label="Student L" score="7" />
  21.             </mx:Array>
  22.         </mx:source>
  23.     </mx:ArrayCollection>
  24.     <mx:DataGrid id="dataGrid"
  25.             dataProvider="{arrColl}"
  26.             editable="true"
  27.             rowCount="8">
  28.         <mx:columns>
  29.             <mx:DataGridColumn dataField="label"
  30.                     editable="false" />
  31.             <mx:DataGridColumn dataField="score"
  32.                     editable="true"
  33.                     itemEditor="mx.controls.NumericStepper"
  34.                     editorDataField="value" />
  35.         </mx:columns>
  36.     </mx:DataGrid>
  37. </mx:Application>

你可能感兴趣的:(职场,休闲)