Repository: flex-utilities Updated Branches: refs/heads/develop ed119ea2f -> f82317b9a
Make MD5Checker DataGrid editable along with md5 and cacheID column - in order to allow easly copy generated hashes Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/aa215f77 Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/aa215f77 Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/aa215f77 Branch: refs/heads/develop Commit: aa215f77441f80aa5926bc5553071cb27c586e38 Parents: ed119ea Author: Piotr Zarzycki <[email protected]> Authored: Sun Feb 11 15:41:26 2018 +0100 Committer: Piotr Zarzycki <[email protected]> Committed: Sun Feb 11 15:41:26 2018 +0100 ---------------------------------------------------------------------- MD5Checker/src/MD5Checker.mxml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/aa215f77/MD5Checker/src/MD5Checker.mxml ---------------------------------------------------------------------- diff --git a/MD5Checker/src/MD5Checker.mxml b/MD5Checker/src/MD5Checker.mxml index bb4be53..f1baa73 100644 --- a/MD5Checker/src/MD5Checker.mxml +++ b/MD5Checker/src/MD5Checker.mxml @@ -422,13 +422,13 @@ limitations under the License. ]]> </fx:Script> <s:VGroup width="100%"> - <s:DataGrid id="dg" width="100%" height="300"> + <s:DataGrid id="dg" width="100%" height="300" editable="true"> <s:columns> <s:ArrayList> <s:GridColumn dataField="label" /> <s:GridColumn dataField="url" /> - <s:GridColumn dataField="md5" /> - <s:GridColumn dataField="cacheID" /> + <s:GridColumn dataField="md5" editable="true"/> + <s:GridColumn dataField="cacheID" editable="true"/> </s:ArrayList> </s:columns> </s:DataGrid>
