Module: nagvis Branch: master Commit: b0a71e50c98e6b7e686e634beed22b9ea9b9157e URL: http://nagvis.git.sourceforge.net/git/gitweb.cgi?p=nagvis/nagvis/commit/?id=b0a71e50c98e6b7e686e634beed22b9ea9b9157e
Author: Andriy Skuratov <[email protected]> Date: Fri Aug 28 16:24:33 2009 +0300 gmap:Quick fix of Autocomplete component layout problem. --- uifx/src/modules/gmap/view/DialogLink.mxml | 4 ++++ uifx/src/modules/gmap/view/DialogLocation.mxml | 4 ++++ 2 files changed, 8 insertions(+), 0 deletions(-) diff --git a/uifx/src/modules/gmap/view/DialogLink.mxml b/uifx/src/modules/gmap/view/DialogLink.mxml index 981ad45..de30fb7 100644 --- a/uifx/src/modules/gmap/view/DialogLink.mxml +++ b/uifx/src/modules/gmap/view/DialogLink.mxml @@ -304,6 +304,10 @@ lnkNObject.labelFunction = groupLabelFunction; break; } + + //AutoComplete component have some problems with positioning on Canvas + //this is a quick hack - refactoring needed. + lnkNObject.textInput.width = 175; } private function loadNagiosData() : void diff --git a/uifx/src/modules/gmap/view/DialogLocation.mxml b/uifx/src/modules/gmap/view/DialogLocation.mxml index d2366b3..0eefb52 100644 --- a/uifx/src/modules/gmap/view/DialogLocation.mxml +++ b/uifx/src/modules/gmap/view/DialogLocation.mxml @@ -283,6 +283,10 @@ locNObject.labelFunction = groupLabelFunction; break; } + + //AutoComplete component have some problems with positioning on Canvas + //this is a quick hack - refactoring needed. + locNObject.textInput.width = 175; } private function loadNagiosData() : void ------------------------------------------------------------------------------ Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july _______________________________________________ Nagvis-checkins mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/nagvis-checkins
