[flexcoders] DataGrid, error using DateField as the item editor

2007-04-04 Thread Cosma
eproduce the problem: Do you have any idea of the cause of this behaviour? Thanks Cosma

[flexcoders] Re: DataGrid, error using DateField as the item editor

2007-04-06 Thread Cosma
ed to provide a setBirthDate(String) method in my value object. Thank you very much. Cosma

[flexcoders] How to find all the validators attached to a field?

2007-11-23 Thread Cosma
vance Cosma

[flexcoders] How to restore automatic height calculation (after an explicit value was set)

2007-12-05 Thread Cosma
ts anymore, as it did by default. Thanks for any hint Cosma

[flexcoders] Re: How to restore automatic height calculation (after an explicit value was set

2007-12-06 Thread Cosma
e heightTo property of Resize 2) Attaching a listener for EFFECT_END to set explicitHeight to NaN Thanks again for the help Cosma --- In flexcoders@yahoogroups.com, "Daniel Freiman" <[EMAIL PROTECTED]> wrote: > > To set the height of a component without setting the explicitHeight u

[flexcoders] Debugging RemoteClass serialization

2007-12-17 Thread Cosma
e code of the two classes, should this help. Note that the ActionScript class is statically referenced in my MXML code, so it should not be a linker optimization issue. Thank you in advace for any help Cosma // ActionScript class package fullpackagename { import flash.utils.ByteArray; [Mana

[flexcoders] Re: Debugging RemoteClass serialization

2007-12-18 Thread Cosma
as a last resort, but I'd like to find an alternative solution.. anyway, thank you! Cosma

[flexcoders] Re: Debugging RemoteClass serialization

2007-12-18 Thread Cosma
t; > http://www.adobe.com/2006/mxml"; > xmlns="*" > xmlns:vo="fullpackagename.*"> > > > > ... > > > > Den > Thank you Den, but I'm already referencing it that way in my mxml.. Cosma

[flexcoders] Re: Debugging RemoteClass serialization [SOLVED]

2007-12-18 Thread Cosma
of FlexBuilder 3? (maybe it's already like this - I'm still using the SDK version 2.0.1 to use LCDS 2.5) Again, I want to thank Johnny and Den for their help. Cosma

[flexcoders] Re: Debugging RemoteClass serialization [SOLVED]

2007-12-19 Thread Cosma
e compiler scanning all the sources, instead of having me doing the same job manually and writing code to workaround this, isn't it? :) Cosma

[flexcoders] ActionScript, Number and null values... how to?

2007-12-19 Thread Cosma
type.. but null Java objects are converted to 0 (zero) values? Cosma

[flexcoders] Re: ActionScript, Number and null values... how to?

2007-12-19 Thread Cosma
Thank you :) Cosma

[flexcoders] Re: Debugging RemoteClass serialization [SOLVED]

2007-12-19 Thread Cosma
my services that I want to keep in mind when coding a Flex front-end for them. As I said in a previous post, a way to include an entire package of classes (compiler switch/ide support) would at least allow us to setup this when starting a new project and then to forget about it. Anyway, I think Flex is a great product, and this is probabily the only real issue I found until now :) Cosma

[flexcoders] Re: const?

2007-12-21 Thread Cosma
time (for the class definition, being static) insted of being allocated for every class istance (non-static class members) or every time the member function is executed (function scoped vars and consts).. unless their initial value is unknown at compile-time, I think consts should always be defined as static. Cosma

[flexcoders] Flex compiler: missing SWF for modules without any error?

2008-01-07 Thread Cosma
de in the module, it won't compile anymore. The strange thing is that the 'problems' window of flex builder does not show up anything strange, and the SWF file is missing from the output folder. Some error must be happening.. is there any way to obtain additional info from the co

[flexcoders] Re: Flex compiler: missing SWF for modules without any error?

2008-01-07 Thread Cosma
71023-1652. - Cosma

[flexcoders] Re: Flex compiler: missing SWF for modules without any error?

2008-02-01 Thread Cosma
led wiew, but only the module they belong to will be reported.. you have to search your source files by yourself. -Cosma --- In flexcoders@yahoogroups.com, "Cosma" <[EMAIL PROTECTED]> wrote: > > Ok, there actually was an error in the implementation of the interface > meth

[flexcoders] WSDLParser Error #1009 when calling a web service

2007-05-03 Thread Cosma
; http://wxp002:9080/CarRentalWeb/sca/CarRentalProcessExport1"/> Call is done like this: richiestaNoleggioService.richiestaNoleggio.send(idNoleggio); Note that I'm able to correctly call this service with other clients, for example using soapUI. Any ideas? Thanks Cosma

[flexcoders] Re: Is this a bug? 1195 - Attempted access of inaccessible method name ...

2007-05-03 Thread Cosma
{ > _name = __name; > > } > > public function get name() : String > { > return _name; > } > > public var _name : String; > } > } > > Is there something tricky going on with these set/get methods? > > thanks > > Matt. > When you declare your "name" method with the "set" or "get" keywords, it will be automatically called when you read from or assign to "tst.name", using a syntax like tst.name="XXX". Cosma

[flexcoders] Re: WSDLParser Error #1009 when calling a web service

2007-05-03 Thread Cosma
for the first wsdl file, and then a second one for the imported wsdl, but it fails on the first attemp to use that service without making any further request. I'm able to correctly call the web service using soapUI. Thank you Cosma Colanicchia P.S. Maybe Adobe should redesign its bug report form (a 3x3cm box, limited to 2000 chars, without file attachment support) :)

[flexcoders] Re: WSDLParser Error #1009 when calling a web service

2007-05-03 Thread Cosma
the exact line of code where the error occurs: C:\dev\enterprise_bali\frameworks\mx\rpc\soap\WSDLParser.as:626 Unfortunately, the source for the mx.rpc package isn't available in the SDK. Cosma

[flexcoders] Re: WSDLParser Error #1009 when calling a web service

2007-05-04 Thread Cosma
style. > Yes Pete, this was the main issue.. now it's working. Again, thank you. Cosma

[flexcoders] Re: WSDLParser Error #1009 when calling a web service

2007-05-04 Thread Cosma
You're right, my problem was caused by both things: 1) WSDL was lacking an output definition 2) The call syntax was not right for this w.s. style By the way, now it's working :) Thank you Cosma

[flexcoders] DataGrid and complex objects..

2007-05-04 Thread Cosma
Hey Adobe, is there any plan for DataGrid to support complex objects? (e.g. dataField="address.city")? :) It's an *horrible* thing having to cycle over my viewobjects to create a flat arraycollection, or to create a labelFunction for each field (with all the sort problem). Bye Cosma

[flexcoders] How to remove validators created at runtime?

2007-05-04 Thread Cosma
sable myValidator just after it has been explicitly used, how can I obtain this behaviour? Thank you Cosma

[flexcoders] Re: DataGrid and complex objects..

2007-05-07 Thread Cosma
Thank you Alex, I'll try your solution.

[flexcoders] Re: How to remove validators created at runtime?

2007-05-07 Thread Cosma
That's worked, thank you :)

[flexcoders] How to show validation tooltip?

2007-05-07 Thread Cosma
Hi, is there a way to immediately show all the failed validation tooltips, instead of waiting for the user to move mouse over it? Thank you Cosma

[flexcoders] Cairngorm: how do you use it?

2007-05-11 Thread Cosma
ing (the controller) to retrieve the data from the appropriate source and to make it available to the view. This is closer to the secondo approach that I've described, but it seems not to be the "cairngorm-way" to me:) Cairngorm-enabled flexcoders out there, which approach are you chosing? Any thought welcome. Thanks Cosma

[flexcoders] Re: Cairngorm: how do you use it?

2007-05-11 Thread Cosma
--- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Friday 11 May 2007, Cosma wrote: > > Now, my question is: should the single UI pieces be aware of the model > > locator, or it is better for them to expose properties, letting the > &g

[flexcoders] Can I debug a flex app running in the browser?

2007-05-11 Thread Cosma
urces in the same session? Thank you Cosma

[flexcoders] Re: Cairngorm: how do you use it?

2007-05-11 Thread Cosma
--- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Friday 11 May 2007, Cosma wrote: > > Thank for the response Tom. However, what are the advantages of > > implementing a model locator, when it is alway used from one > > single compone

[flexcoders] Re: Can I debug a flex app running in the browser?

2007-05-12 Thread Cosma
--- In flexcoders@yahoogroups.com, "meteatamel" <[EMAIL PROTECTED]> wrote: > > Did you see James Ward's "Debug Flex and Java together" blog? > That post is about setting up a FDS project, I suppose that things are a little different with plain client-only flex project.. anyway I'll give it a try,

[flexcoders] Re: Parameter passing !! I am shocked

2007-06-08 Thread Cosma
ecuted in background by the VM, tracing object instances that are not referenced by any pointer yet, and destroying them. Bye Cosma --- In flexcoders@yahoogroups.com, "Ravi Kumar Gummadi" <[EMAIL PROTECTED]> wrote: > > > Hi all > > How does flex handle parameter pas

[flexcoders] Re: Subclassing Components: Theoretical Question

2008-09-12 Thread Cosma
help. Cosma --- In flexcoders@yahoogroups.com, "wnoone01" <[EMAIL PROTECTED]> wrote: > > Hey all, > > Thanks for the responses. I just want to clarify my question a little > bit. I am not particularly interested in the actual solution to the > example. Although,

[flexcoders] Re: How to sorting the results of an OLAPQuery?

2008-06-17 Thread Cosma
thods). What's the point making a method protected and leaving private the members it requires to work? :) Anyway I created a static utility method to perform the sort that is very similar to the compareMembers one. Thanks Cosma --- In flexcoders@yahoogroups.com, "sreeni_r" <[

[flexcoders] Re: ViewStack and Parent Container Communication using Events

2008-05-14 Thread Cosma
#x27;t get any Events even though i see in the trace > the events are being fired properly. > > Thanks > Mars. > Use can use plain Flex events, setting bubble property to true.. Cosma

[flexcoders] Containers, percentage size and scrolling behavior..

2008-05-14 Thread Cosma
ny ideas? Thanks in advance Cosma Colanicchia

[flexcoders] Re: Containers, percentage size and scrolling behavior..

2008-05-14 Thread Cosma
http://bugs.adobe.com/jira/browse/SDK-15567 Probably they're starting to hate me - I've already filed other 6 or 7 issues before this one :) Cosma Colanicchia --- In flexcoders@yahoogroups.com, EECOLOR <[EMAIL PROTECTED]> wrote: > > I totally agree here. I think you sh

[flexcoders] Re: Containers, percentage size and scrolling behavior..

2008-05-14 Thread Cosma
It works, thank you very much! I'd missed that post. I'm going to mark the issue as NAB. Cosma Colanicchia --- In flexcoders@yahoogroups.com, "ben.clinkinbeard" <[EMAIL PROTECTED]> wrote: > > Does setting minHeight = 0 help? > > http://tech.groups.ya

[flexcoders] Re: How to sorting the results of an OLAPQuery?

2008-05-28 Thread Cosma
roups.com, "sreeni_r" <[EMAIL PROTECTED]> wrote: > > > Have you tried calling OLAPSet.hierarchize()? > > It returns a new OLAPSet in which the members are sorted. > > --- In flexcoders@yahoogroups.com, "Cosma" wrote: > > > > Hi, >