Home >php教程 >PHP开发 >Flex DataGrid pseudo-merged cell implementation ideas

Flex DataGrid pseudo-merged cell implementation ideas

高洛峰
高洛峰Original
2016-12-27 16:57:201180browse

<?xml version="1.0" encoding="utf-8"?> 
<s:MXDataGridItemRenderer xmlns:fx="http://ns.adobe.com/mxml/2009" 
         xmlns:s="library://ns.adobe.com/flex/spark" 
         xmlns:mx="library://ns.adobe.com/flex/mx" 
         width="100%" height="100%"
           
         autoDrawBackground="false"
         creationComplete="mxitemrenderer1_creationCompleteHandler(event)"
        > 
  <s:layout> 
    <s:VerticalLayout verticalAlign="middle" horizontalAlign="center"/> 
  </s:layout> 
  <fx:Script> 
    <![CDATA[ 
      import mx.collections.ArrayCollection; 
      import mx.controls.Text; 
      import mx.events.FlexEvent; 
        
      protected function mxitemrenderer1_creationCompleteHandler(event:FlexEvent):void 
      { 
        var txt1:String = lbl.text.split(",")[0]; 
        var txt2:String = lbl.text.split(",")[1]; 
        lbl1.text = txt1; 
        lbl2.text = txt2; 
      
      } 
        
    ]]>
  </fx:Script> 
  <fx:Declarations> 
    <!-- 将非可视元素(例如服务、值对象)放在此处 -->
  </fx:Declarations> 
  <s:Label id="lbl" text="{dataGridListData.label}" visible="false" height="0"/> 
    
  <s:VGroup  id="vp" width="100%" height="100%" gap="2" > 
  <s:Label  id="lbl1" color="0x000000" textAlign="center" verticalAlign="middle" width="100%"/> 
  <mx:HRule width="100%" chromeColor="0x999999" alpha="0.3"/> 
  <s:Label  id="lbl2" color="0x000000" textAlign="center" verticalAlign="middle" width="100%"/> 
  </s:VGroup> 
  </s:MXDataGridItemRenderer>

For more articles on Flex DataGrid pseudo-merged cell implementation ideas, please pay attention to the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn