1. The previous article about data grid sort function that still have problems about code refractor.
http://davyjones2010.iteye.com/blog/1840335
2. Below are solutions for a cleaner code with code refractor.
1. Vo (Compare functions are now moved from main application to value object. A better approach for code reusing)
package vo { import mx.events.ItemClickEvent; import mx.formatters.NumberFormatter; import mx.utils.ObjectUtil; public class FlatFileUploadVo implements ComparableVo { public var id:Number; public var isUpload:Boolean; public var feedName:String; public var reqBy:String; public var profitVal:String; public var netProfitVal:String; public var exposure:String; private var numberDeFormatter:NumberFormatter public function FlatFileUploadVo() { numberDeFormatter = new NumberFormatter(); numberDeFormatter.decimalSeparatorFrom = "."; numberDeFormatter.decimalSeparatorTo = "."; numberDeFormatter.thousandsSeparatorFrom = ","; numberDeFormatter.thousandsSeparatorTo = ""; numberDeFormatter.useThousandsSeparator = "false"; } public function compare(vo:ComparableVo, compareField:String):int { var realVo:FlatFileUploadVo = (vo as FlatFileUploadVo); if("id" == compareField || "profitVal" == compareField || "netProfitVal" == compareField || "exposure" == compareField) { var val1:Number = new Number(numberDeFormatter.format(this[compareField])); var val2:Number = new Number(numberDeFormatter.format(realVo[compareField])); var res:int = compareNumber(val1, val2); if(0 == res) { return compareNumber(this.id, realVo.id); } else { return res; } }else { var result:int = compareString(this[compareField], realVo[compareField]); return (0 == result) ? (compareNumber(this.id, realVo.id)) : result; } } private function compareNumber(id1:Number, id2:Number):int { return ObjectUtil.numericCompare(id1, id2); } private function compareString(str1:String, str2:String):int { return ObjectUtil.stringCompare(str1, str2); } } }
2. Interface ComparableVo designed for comparing vo
package vo { public interface ComparableVo { function compare(vo:ComparableVo, compareField:String):int; } }
3. Custom ComparableDataGridColumn that extends DataGridColumn
package components { import mx.collections.Sort; import mx.controls.Alert; import mx.controls.dataGridClasses.DataGridColumn; import vo.FlatFileUploadVo; public class ComparableDataGridColumn extends DataGridColumn { public function ComparableDataGridColumn() { new FlatFileUploadVo(); } override public function set dataField(value:String):void { super.dataField = value; super.sortCompareFunction = mySortCompareFunction; } private function mySortCompareFunction(obj1:Object, obj2:Object):int { return obj1.compare(obj2, this.dataField); } } }
4. Main Application
<?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:components="components.*" creationComplete="onComplete(event)" > <fx:Declarations> <!-- Place non-visual elements (e.g., services, value objects) here --> </fx:Declarations> <fx:Script> <![CDATA[ import mx.collections.ArrayCollection; import mx.collections.ISort; import mx.collections.Sort; import mx.collections.SortField; import mx.controls.Alert; import mx.events.DataGridEvent; import mx.messaging.channels.StreamingAMFChannel; import vo.FlatFileUploadVo; [Bindable] public var queList:ArrayCollection = new ArrayCollection(); private var sortA:ISort; private var flatFile:FlatFileUploadVo; private function onComplete(event:Event):void { flatFile = new FlatFileUploadVo(); flatFile.isUpload = false; flatFile.feedName = "feedName01"; flatFile.reqBy = "system"; flatFile.id = new Number(1); flatFile.profitVal = "123,123.12"; flatFile.netProfitVal = "23,123.12"; flatFile.exposure = "4,233.12"; queList.addItem(flatFile); flatFile = new FlatFileUploadVo(); flatFile.isUpload = true; flatFile.feedName = "feedName02"; flatFile.reqBy = "system"; flatFile.id = new Number(2); flatFile.profitVal = "323,123.12"; flatFile.netProfitVal = "5,123.12"; flatFile.exposure = "933.12"; queList.addItem(flatFile); flatFile = new FlatFileUploadVo(); flatFile.isUpload = true; flatFile.feedName = "feedName03"; flatFile.reqBy = "system"; flatFile.id = new Number(3); flatFile.profitVal = "123,123.12"; flatFile.netProfitVal = "23,123.12"; flatFile.exposure = "14,233.12"; queList.addItem(flatFile); flatFile = new FlatFileUploadVo(); flatFile.isUpload = true; flatFile.feedName = "feedName04"; flatFile.reqBy = "system"; flatFile.id = new Number(4); flatFile.profitVal = "123,123.12"; flatFile.netProfitVal = "23,123.12"; flatFile.exposure = "4,233.12"; queList.addItem(flatFile); flatFile = new FlatFileUploadVo(); flatFile.isUpload = false; flatFile.feedName = "feedName05"; flatFile.reqBy = "system"; flatFile.id = new Number(5); flatFile.profitVal = "5,123.12"; flatFile.netProfitVal = "923.12"; flatFile.exposure = "4,233.12"; queList.addItem(flatFile); flatFile = new FlatFileUploadVo(); flatFile.isUpload = false; flatFile.feedName = "feedName06"; flatFile.reqBy = "system"; flatFile.id = new Number(6); flatFile.profitVal = "83.12"; flatFile.netProfitVal = "23.12"; flatFile.exposure = "4,233.12"; queList.addItem(flatFile); flatFile = new FlatFileUploadVo(); flatFile.isUpload = false; flatFile.feedName = "feedName07"; flatFile.reqBy = "system"; flatFile.id = new Number(7); flatFile.profitVal = "123,123.12"; flatFile.netProfitVal = "23,123.12"; flatFile.exposure = "4,233.12"; queList.addItem(flatFile); flatFile = new FlatFileUploadVo(); flatFile.isUpload = false; flatFile.feedName = "feedName08"; flatFile.reqBy = "system"; flatFile.id = new Number(8); flatFile.profitVal = "123,123.12"; flatFile.netProfitVal = "23,123.12"; flatFile.exposure = "4,233.12"; queList.addItem(flatFile); flatFile = new FlatFileUploadVo(); flatFile.isUpload = false; flatFile.feedName = "feedName09"; flatFile.reqBy = "system"; flatFile.id = new Number(9); flatFile.profitVal = "123,123.12"; flatFile.netProfitVal = "23,123.12"; flatFile.exposure = "4,233.12"; queList.addItem(flatFile); flatFile = new FlatFileUploadVo(); flatFile.isUpload = true; flatFile.feedName = "feedName10"; flatFile.reqBy = "system"; flatFile.id = new Number(10); flatFile.profitVal = "123,123.12"; flatFile.netProfitVal = "23,123.12"; flatFile.exposure = "4,233.12"; queList.addItem(flatFile); flatFile = new FlatFileUploadVo(); flatFile.isUpload = true; flatFile.feedName = "feedName02"; flatFile.reqBy = "system"; flatFile.id = new Number(11); flatFile.profitVal = "1,123,123.12"; flatFile.netProfitVal = "123,123.12"; flatFile.exposure = "9.12"; queList.addItem(flatFile); } ]]> </fx:Script> <mx:DataGrid dataProvider="{queList}" width="600"> <mx:columns> <mx:DataGridColumn headerText="Initiate?" sortable="false" editable="false" dataField="isUpload" itemRenderer="components.CheckBoxColumnRenderer"/> <components:ComparableDataGridColumn headerText="ID" sortable="true" editable="false" dataField="id" width="20"/> <components:ComparableDataGridColumn headerText="Feed Name" sortable="true" editable="false" dataField="feedName" width="100"/> <components:ComparableDataGridColumn headerText="Request By" sortable="true" editable="false" dataField="reqBy" width="100"/> <components:ComparableDataGridColumn headerText="Profit" sortable="true" editable="false" dataField="profitVal" width="100"/> <components:ComparableDataGridColumn headerText="Net Profit" sortable="true" editable="false" dataField="netProfitVal" width="100"/> <components:ComparableDataGridColumn headerText="Exposure" sortable="true" editable="false" dataField="exposure" width="100"/> </mx:columns> </mx:DataGrid> </s:Application>
5. Custom CheckBoxRenderer that extends CheckBox
package components { import flash.events.MouseEvent; import mx.controls.Alert; import mx.controls.CheckBox; import vo.FlatFileUploadVo; public class CheckBoxColumnRenderer extends mx.controls.CheckBox { public function CheckBoxColumnRenderer() { } override public function set data(value:Object):void { super.data = value; //This line is important! Internally set data to the value passed in. var isUpload:Boolean = value.isUpload; if(true == isUpload) { selected = true; } else { selected = false; } } override protected function clickHandler(event:MouseEvent):void { var selectedCheckBox:CheckBoxColumnRenderer = event.currentTarget as CheckBoxColumnRenderer; (selectedCheckBox.data as FlatFileUploadVo).isUpload = !(selectedCheckBox.data as FlatFileUploadVo).isUpload; selectedCheckBox.selected = !selectedCheckBox.selected; } } }
Explaination:
1. The main reson to custom a data grid column is to provide a better approach to compare Number values that displayed as String(Because we want to display number as the format of 111,222.333 and it's no longer a Number type any more) If we don't override such a method, the default sort method will sort these number as String. The result is not that desirable. What's more, the only way I find out to utilize the compare function defined in Vo is to rewrite the DataGridColumn.
Now the code is less redundancy and more clean.
And the ComparableDataGridColumn is more common and general that can be applied with any Vo that implements the ComparableVo interface. Just like a litte frame work.
相关推荐
mount: you must specify the filesystem type 先执行:mkfs.ext3 /dev/vdb # mkfs.ext3 /dev/vdb mke2fs 1.41.12 (17-May-2010) Filesystem label= OS type: Linux Block size=4096 (log=2) Fragment size=4096 ...
- **Array Types and Sizes**: Overview of different types of arrays (one-dimensional, multidimensional) and how to specify their sizes. - **More Than One Dimension**: Explanation of multidimensional ...
文章目录Tensorflow 2.1 报错整合RuntimeError: `loss` passed to Optimizer.compute_gradients should be a function when eager execution is enabled.RuntimeError: Attempting to capture an EagerTensor ...
-Paging- Admin can specify whether to use paging on the grid and how many records to show per page. -Export datagrid to an Excel file. -Parameter Substitution: SQL can include [dnn:UserID] or [dnn:...
Code snippet and file conversion: Our snippet conversion accuracy is outstanding and does not require you to insert entire methods or classes. Heuristics are used to convert code fragments wit h ...
use /Zm to specify a higher limit ``` 此错误表明编译器内部堆栈空间已达到限制,导致编译无法继续。通常这种问题出现在包含大量头文件或者依赖复杂模板元编程的大型项目中。下面将详细介绍如何解决这一问题。 ...
Pycharm管理解释器报错:Please specify a different SDK name-解决方法
How to sort file data using the advanced sort options and the column sort options Working with CSV files Use UltraEdit's built-in handling for character-separated value files Word wrap and tab ...
这个名为"A Java architecture test library, to specify and assert ar.zip"的压缩包,包含的是ArchUnit的主要源码和资源文件,其核心部分是`ArchUnit-main`。 ArchUnit库的特性与用法: 1. **定义规则**:...
of web pages, CSS to specify the presentation of web pages, and JavaScript to specify the behavior of web pages. This book will help you master the language. If you are already familiar with other ...
- **Commenting Code**: This topic discusses how to add comments to your code to make it more readable and maintainable. - **Identifiers and Keywords**: Identifiers are used to name variables, methods,...
Windos下安装pyspider报错:Please specify --curl-dir=/path/to/built/libcurl Windos下安装pyspider报错:Please specify --curl-dir=/path/to/built/libcurl Windos下安装pyspider报错:Please specify --curl-dir=/...
How to send email? After specifying the information in the dialog box, click the Send button. A warning message will be displayed, click Send button. Note:The warning dialog is displayed because...
在IT行业中,Kubernetes(K8s)是一个广泛使用的容器编排系统,而KubeSphere是在Kubernetes之上构建的企业级开放平台,它提供了一站式的应用全生命周期管理服务。KubeSphere离线安装是为了在没有互联网连接或者网络...