`
zhsc08zhsc
  • 浏览: 13655 次
最近访客 更多访客>>
社区版块
存档分类
最新评论

Chapter 22: Using Item Renderers and Item Editors--Creating item renderers and item editor components

阅读更多

  Defining a custom item renderer or item editor by using an MXML component gives you greater flexibility and 
  functionality than using a drop-in item renderer or item editor. Many of the rules for defining item renderers and 
  item editors as custom components are the same as for using inline item renderers and editors. For more infor-
  mation, see "Creating inline item renderers and editors" on page 800.
  For more information on working with custom components, see Creating and Extending Adobe Flex 3 Compo-
  nents. Creating an item renderer component
  The section "Default item rendering and cell editing" on page 780 shows a DataGrid control that displays infor-
  mation about albums by using three text fields. You could add a visual element to your DataGrid control to make 
  it more compelling. To do that, you modify the data provider so that it contains a URL for a JPEG image of the 
  album cover.
  The default item renderer for a DataGrid control displays data as text. To get the DataGrid control to display the 
  image of the album cover, you use the custom item renderer defined in the RendererDGImage.mxml file, as the 
  following example shows:    height="175" source="{data.Cover}"/>    The item renderer contains an Image control in an HBox container. The HBox container specifies to center the 
  image in the container; otherwise, the image appears flush left in the cell. The Image control specifies the height 
  of the image as 75 pixels. By default, an image has a height of 0 pixels; therefore, if you omit the height, the image 
  does not appear. 
  You use data binding to associate fields of a data property with the controls in an item renderer or item editor. In 
  this example, the data property that is passed to the item renderer contains the element of the data provider for 
  the entire row of the DataGrid control. You then bind the Cover field of the data property to the Image control. 
  The following example illustrates using a custom item renderer with the DataGrid control:                The DataGrid control contains a column for the album cover that uses the itemRenderer property to specify the 
  name of the MXML file that contains the item renderer for that column. Now, when you run this example, the 
  DataGrid control uses your custom item renderer for the Cover column to display an image of the album cover.
  Rather than having the album name and album image in separate cells of the DataGrid control, you can use an 
  item renderer to make them appear in a single cell, as the following example shows: 
    height="75">     You save this item renderer to the RendererDGTitleImage.mxml file. The DataGrid control in the main appli-
  cation references the item renderer, as the following example shows: 
                In the preceding example, you define three columns in the DataGrid control, and assign your item renderer to the 
  second column. For an image that shows the output of this application, see "Using custom item renderers and item 
  editors" on page 782.    Creating a simple item editor component
  A simple item editor component defines a single control that you use to edit a cell, and returns a single value to 
  the list control. For an example of a simple item editor component, see "Using a component as an item renderer 
  or item editor" on page 790.
  A complex item editor can contain multiple components, or can return something other than a single value to the 
  list control. For more information, see "Working with Item Editors" on page 821. Overriding the data property
  All components that you use in a custom item renderer or item editor that require access to the data passed to the 
  renderer must implement the mx.core.IDataRenderer interface to define the data property. All Flex containers 
  and many Flex components support this property. 
  Classes implement the mx.core.IDataRenderer interface by defining the data property as a setter and getter 
  method, with the following signature:  override public function set data(value:Object):void public function get data():Object  In the setter method, value is the data property passed to the item renderer.
  If you define a custom component and you want to support the data property, your component must implement 
  the mx.core.IDataRenderer interface. If your component is a subclass of a class that already implements the 
  mx.core.IDataRenderer interface, you do not have to reimplement the interface. 
  To add programmatic logic to the controls in your item renderer or item editor that already implement the data 
  property, you can override the setter or getter method for the data property. Typically, you override the setter 
  method so that you can perform some operation based on the value that is passed to it.
  For example, the following DataGrid control uses true and false for the values of the SalePrice field of the data 
  provider. Although you could display these values in your DataGrid control, you can create a more compelling 
  DataGrid control by displaying images instead, as the following item renderer shows:        height="20"/>   In this example, you override the setter method for the HBox container. In the override, use super.data to set 
  the data property for the base class, and then set the source property of the Image control based on the value of 
  the SalePrice field. If the field is true, which indicates that the item is on sale, you display one icon. If the item is 
  not on sale, you display a different icon.
  The override also dispatches the dataChange event to indicate that the data property has changed. You typically 
  dispatch this event from the setter method. About using the creationComplete and dataChange events
  Flex dispatches the creationComplete event once for a component after the component is created and 
  initialized. Many custom components define an event listener for the creationComplete event to handle any 
  postprocessing tasks that must be performed after the component is completely created and initialized.
  However, although for an item renderer or item editor, Flex might reuse an instance of the item renderer or item 
  editor, a reused instance of an item renderer or item editor does not redispatch the creationComplete event. 
  Instead, you can use the dataChange event with an item renderer or item editor. Flex dispatches the dataChange 
  event every time the data property changes. The example in the section "Accessing the listData property" on 
  page 794 uses the dataChange event to update the TextArea in an item renderer for a DataGrid control.
  Creating an item renderer in ActionScript
  Although you commonly create item renderers and editors in MXML, you can also create them in ActionScript, 
  as the following example item renderer shows: package myComponents { // myComponents/CellField.as import mx.controls.*; import mx.core.*; import mx.controls.dataGridClasses.DataGridListData; public class CellField extends TextInput { // Define the constructor and set properties. public function CellField() { super(); height=60; width=80; setStyle("borderStyle", "none"); editable=false; } // Override the set method for the data property. override public function set data(value:Object):void { super.data = value; if (value != null) { text = value[DataGridListData(listData).dataField]; if(Number(text) > 100) { setStyle("backgroundColor", 0xFF0000); } } else { // If value is null, clear text. text= ""; } super.invalidateDisplayList(); } } } In the preceding example, you create a subclass of the TextInput control as your item renderer. The class must be 
  public to be used as an item renderer or editor. This item renderer displays a red background if the value of the 
  DataGrid cell is greater than 100. 
  You can use this item renderer in a DataGrid control, as the following example shows:
    height="600">             
分享到:
评论

相关推荐

    Python库 | py3o.renderers.pyuno-0.4-py2.7.egg

    python库,解压后可用。 资源全名:py3o.renderers.pyuno-0.4-py2.7.egg

    PyPI 官网下载 | py3o.renderers.pyuno-0.4-py2.7.egg

    资源来自pypi官网。 资源全名:py3o.renderers.pyuno-0.4-py2.7.egg

    Python库 | py3o.renderers.juno-0.8.1-py2.7.egg

    资源分类:Python库 所属语言:Python 资源全名:py3o.renderers.juno-0.8.1-py2.7.egg 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059

    itemrenderer help

    But Flex is capable of much more, and the list controls provide a way to customize their content using itemRenderers. By giving you complete control over the content of each row (or cell) of a list ...

    renderers2-dagger-clean-example:使用不同版本的库进行CLEAN的另一种方法

    如果您想查看Android体系结构方法,请查看以下存储库: Renderers2示例-清洁的另一种方法替代我再次基于受人尊敬的开发人员的出色工作。 使用较新版本的来支持RecyclerView而不是ListView。 具有虚拟的视频列表,...

    前端项目-esri-leaflet-renderers.zip

    前端项目-esri-leaflet-renderers,用于呈现的ESRI传单插件

    Python库 | py3o.renderers.pyuno-0.4.tar.gz

    资源分类:Python库 所属语言:Python 资源全名:py3o.renderers.pyuno-0.4.tar.gz 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059

    Mastering.Xamarin.UI.Development.1786462001.epub

    binding techniques that will make your user interfaces dynamic, and create personalized animations and visual effects within your user interfaces using Custom Renderers and the PlatformEffects API to ...

    Android代码-Renderers

    Are you bored of creating adapters again and again when you have to implement a ListView or a RecyclerView? Are you bored of using ViewHolders and create getView/onCreateViewHolder/onBindViewHolder ...

    Mastering Xamarin UI Development

    binding techniques that will make your user interfaces dynamic, and create personalized animations and visual effects within your user interfaces using Custom Renderers and the PlatformEffects API to ...

    GPU Instancer 0.9.0

    To provide the fastest possible performance, GPU Instancer utilizes Indirect GPU Instancing using Unity's DrawMeshInstancedIndirect method and Compute Shaders. GPU Instancing results in magnitudes of...

    Developing Flex Applications 910p dda_doc88_cracker.zip

    Using Flex Components . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87 About components . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ....

    Swing Hacks

    Make them look good with polymorphic renderers and animated selections. Make them perform well with filtering and Collections support. Chapter 3, Tables and Trees This chapter revelas the secrets...

    require-can-renderers:CanJS 查看 Require.js 的渲染器

    $ npm install require-can-renderers --save 将路径添加到您的 requirejs 配置: require.config({ "paths": { "ejs" : "node_modules/require-can-renderers/lib/ejs", "mustache" : "node_modules/...

    react-three-renderer-example, 响应三个渲染器的示例.zip

    react-three-renderer-example, 响应三个渲染器的示例 react-three-renderer-examplereact-three-renderer的示例。https://toxicfork.github.com/react-three-renderer-example/安装npm

    Mastering.Xamarin.UI.Development.epub

    If you are interested in creating stunning user interfaces for the iOS and Android mobile platforms using the power of Xamarin and Xamarin.Forms, then this is your ticket. This book will provide you...

    Mastering Xamarin UI Development pdf

    If you are interested in creating stunning user interfaces for the iOS and Android mobile platforms using the power of Xamarin and Xamarin.Forms, then this is your ticket. This book will provide you...

    Game Development with Three.js

    Moving on from the basics, you will learn how to use Three.js to build game worlds using its core components, including renderers, geometries, materials, lighting, cameras, and scenes. Following on ...

    Bakery - GPU Lightmapper

    unity3d gpu灯光烘焙插件Bakery - GPU Lightmapper 1.4 Features: - Physically correct baked lighting....- Supports Mesh Renderers and Terrains. - Supports LODs. - Supports baked prefabs.

Global site tag (gtag.js) - Google Analytics