Re: [flexcoders] Data binding will not be able to detect changes... ?

2007-03-28 Thread Valy Sivec
Per my knowledge for Array and XMLList data binding won't detect data changes. I suggest you use XMLListCollection and the warning will go away. Regards, Valy - Original Message From: Greg Morphis <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, March 27, 2007 10:25:2

Re: [flexcoders] Result to ArrayCollection - somtimes node is single, sometimes it's an array

2007-02-28 Thread Valy Sivec
See ArrayUtil.toArray(object ) : Array in the doc http://livedocs.adobe.com/flex/201/langref/mx/utils/ArrayUtil.html Regards, Valy - Original Message From: darylgmyers <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, February 27, 2007 9:26:39 AM Subject: [fl

[flexcoders] HTTP services / Error handler

2007-02-26 Thread Valy Sivec
e HTTP service but didn't see anything that might help me. Am I missing something? Can you share with me how did you handle the server side errors on the UI side? Forgot to mention that I'm not using FDS, I use the Flex framework with HTTP services ( x

Re: [flexcoders] Re: FDS/Hibernate Sample of updating hierarchical list of values

2007-02-26 Thread Valy Sivec
That's an excellent message and I had ran through same issues myself and feel your pain... Regards, Valy - Original Message From: simonjpalmer <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Friday, February 23, 2007 5:34:38 AM Subject: [flexcoders] Re: FDS/Hibernate Sample of

[flexcoders] Generate Flex Forms on the fly

2007-02-14 Thread Valy Sivec
I need to be able build some data entry screen(s) on the fly based on form definition stored in the db. Any suggestions?. The requirement is to have customized forms for different clients without changing the screen with any new request. It's more like storing client profile in the db and build

Re: [flexcoders] ComboBox, selectedIndex property

2007-02-08 Thread Valy Sivec
this component. You don't have to do much more if you can do this into a function then you will need to use the creationComplete Property. Best. On 2/8/07, Valy Sivec wrote: If I declare and have the data provider populated, it seems that the first r

[flexcoders] ComboBox, selectedIndex property

2007-02-07 Thread Valy Sivec
If I declare and have the data provider populated, it seems that the first row from the dataprovider shows as selected; if I do cb.selectedIndex = -1 on creation complete event of the main app it works as expected. Am I missing something here? Regards, Valy _

Re: [flexcoders] How to handle server side errors on the UI

2007-01-15 Thread Valy Sivec
or informtion to the player. It is possible to cause the server to send a 200 instead of a 500, and you can then access the fault detail. How this is done depends on the server. Tracy From: [EMAIL PROTECTED] ups.com [mailto: [EMAIL PROTECTED] ups.com ] On Behalf Of Valy Sivec Sent: Friday,

Re: [flexcoders] Todays date without the Time

2007-01-13 Thread Valy Sivec
see setHours method of a date object. It should be something link that date.setHours(0,0,0,0); regards, valy - Original Message From: Ralf Bokelberg <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Saturday, January 13, 2007 6:21:22 AM Subject: Re: [flexcoders] Todays date witho

[flexcoders] How to handle server side errors on the UI

2007-01-12 Thread Valy Sivec
It looks that faultString doesn't help me much. How do you guys deal with the server side errors on the client, if you want to have custom error messages depending on the error code? Thanks, Valy Sivec

[flexcoders] 3D charts?

2006-12-13 Thread Valy Sivec
Current version of Flex doesn't seem to provide 3D charts. Am I missing something? Are there any plans to add new charting features to the 2.0.1 release?. Will the 2.0.1 release include any new features or just bug fixes? Thanks, Valy _

Re: [flexcoders] Re: file download doesnt work?

2006-12-13 Thread Valy Sivec
___ __ > > From: [EMAIL PROTECTED] ups.com [mailto:[EMAIL PROTECTED] ups.com] On Behalf Of Dimitrios Gianninas > Sent: Tuesday, December 12, 2006 2:22 PM > To: [EMAIL PROTECTED] ups.com > Subject: RE: [flexcoders] file download doesnt work? > > > Yup tried that too

Re: [flexcoders] file download doesnt work?

2006-12-12 Thread Valy Sivec
How about changing reg.method="POST" instead GET?. Valy - Original Message From: Dimitrios Gianninas <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, December 12, 2006 9:28:40 AM Subject: RE: [flexcoders] file download doesnt work? Ok

Re: [flexcoders] file download doesnt work?

2006-12-12 Thread Valy Sivec
I worked with upload/download a while back and it's a great improvement in 2.0 vs 1.5. Have you tried to call your servlet outside Flex?. http://localhost: 7001/billing/ servlet/FileSvlt I suspect that your servlet is not configured properly in web.xml Valy - Original Message Fr

[flexcoders] Flex Charting production licensing costs

2006-12-11 Thread Valy Sivec
How much it would cost the license for the charting package?. I need to include some charts in a Flex project that uses the free SDK framework. I'm not using FDS. Thanks, Valy Cheap talk? Check out Yahoo!

Re: [flexcoders] XML-RPC

2006-12-08 Thread Valy Sivec
What do you use on the server side?. If you;re using java on the server side you can call a method on the server side if your http controller is properly configured. Give us more detail with what you have on the backend, and you might want to consider using resultFormat="e4x" when you declar

Re: [flexcoders] Array to Alert

2006-12-06 Thread Valy Sivec
You can use the new line "\n" to build the Alert message. Alert.show( array[0] + "\n" + array[1] ), something like that. HTH, Valy - Original Message From: jmfillman <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, December 5, 2006 6:57:03 PM Subject: [flexcoders] Arra

Re: [flexcoders] Re: itemrenderer trying to access variables in main application

2006-12-06 Thread Valy Sivec
It depends how you design your renderer. Ben's example is excelent and will show you how to implement an item renderer fully decoupled. In case you have an in-line renderer, you can use "outerDocument". Example var myVar : String = "Global var" declared somewhere in your parent application.

[flexcoders] Action Script Metatags

2006-11-30 Thread Valy Sivec
Hello, Can you recommend me a good material about action script meta tags? I'd like to learn more about them. Thanks, Valy Do you Yahoo!? Everyone is raving about the all-new Yahoo! Mail beta. http://new.

Re: [flexcoders] lastResult.records.record.length=null when there's actually 1

2006-11-28 Thread Valy Sivec
Look at ArrayUtil.toArray method that trasforms an object to an array. I'd think something like that would work: var arrayCollection : ArrayCollection= new ArrayCollection ( ArrayUtil.toArray(myListRequest. lastResult. records.record) ); HTH, Valy - Original Message From: Steve Cox <

Re: [flexcoders] Re: Prevent focus Out in editable datagrid, if validator says invalid

2006-11-08 Thread Valy Sivec
Hello flexcoders,   I'm working on the same issues for about a day without any luck. All the examples I've seen so far work correctly for TAB navigation but fail for mouse navigation and invalid cell will loose the focus. I might need a final validation before submit the form/grid data, but I'll

Re: [flexcoders] checkCellRender Validation

2006-11-07 Thread Valy Sivec
Hi Stephen,Sorry, didn't realize that the page was part of the frame... Here is the document I was referencing: http://livedocs.macromedia.com/flex/2/docs/0867.htmlThe tasks I have seems pretty basic, have a grid with multiple columns and only 2 columns should be editable. I want to be able v

Re: [flexcoders] flex2 editable grid cell validator

2006-11-07 Thread Valy Sivec
I'm kinda stuck with a editable grid :((  I need to attach a cell validation and can't get it to work.The flexdocs isn't much help as well, the examples are not fully working. Do you guys have any suggestion how to tackle this beast?.Thanks,Valy- Original Message From: Val

RE: [flexcoders] checkCellRender Validation

2006-11-06 Thread Valy Sivec
as we speak... are you validating upon the itemEditEnd event on the DataGrid or are you validating in an itemEditor?From: [EMAIL PROTECTED]ups.com [mailto:[EMAIL PROTECTED]ups.com] On Behalf Of Valy Sivec Sent: Monday, November 06, 2006 10:18 PM To: [EMAIL PROTECTED]ups.com Subject: RE:

[flexcoders] flex2 editable grid cell validator

2006-11-06 Thread Valy Sivec
Hello flexcoders,I've spent the last few hours trying to validate a cell on a editable datagrid without any luck. Do you have any example?. The example from the adobe docs doesn't work :(. It seems that preventDefault() always works for tab but not for the mousehttp://livedocs.macromedia.com

RE: [flexcoders] checkCellRender Validation

2006-11-06 Thread Valy Sivec
Hello flexcoders,I've spent the last few hours trying to validate a cell on a editable datagrid without any luck. Do you have any example?. The example from the adobe docs doesn't work :(. It seems that preventDefault() always works for tab but not for the mousehttp://livedocs.macromedia.com

[flexcoders] Hide datagrid column at runtime

2006-10-31 Thread Valy Sivec
I need to build a datagrid an hide/display some columns based on some custom logic as response to user interaction with the app. Can't figure out a way to do that... adding a visible={myCustomlogicReturnsBoolean} to the datagrid column resulted in a compilation error.Any ideas?Thanks,Valy

[flexcoders] Editable grid /formatter

2006-10-26 Thread Valy Sivec
Do you guys know a good example I can use for an editable grid with some renderers/formatters for some columns?. I'm having problems "unformatting" the numeric data entered in the grid cell  Am I completely off here?Any suggestions?Thanks,Valy Stay in the know. Pulse on the new Yahoo.com.

[flexcoders] AS2 XML to Value Object decoder

2006-10-25 Thread Valy Sivec
Hello,Is there any xml decoder that will help me translate a XML document to a value object in AS3? other than manually transfering XML elements to the VO?.Thanks,Valy Stay in the know. Pulse on the new Yahoo.com. Check it out. __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.

[flexcoders] Swf file size

2006-10-13 Thread Valy Sivec
Hello,I have compiled flex application with ANT tasks and the generated swf file is around 400k. When is the swf file size considered too big?. Thanks,Valy Yahoo! Messenger with Voice. Make PC-to-Phone Calls to the US (and 30+ countries) for 2¢/min or less. __._,_.___ -- Flexcoders Maili

[flexcoders] Popup

2006-10-06 Thread Valy Sivec
Hello,I open a popup modal window and I'd like to remove the transparency layer underneath. Another question I have is: How can I display a menu bar item as selected in a MenuBar?Thanks,Valy Talk is cheap. Use Yahoo! Messenger to make PC-to-Phone calls. Great rates starting at 1¢/min. __._,_

RE: [flexcoders] Re: Using SpringBeanAdapter instead of FDS

2006-09-21 Thread Valy Sivec
Jeff, thanks for the info. I was under the impression that Adobe opened the HibernateAdapter code.  Am I wrong?Can you point me where I can find it?Thanks again,ValyJeff Vroom <[EMAIL PROTECTED]> wrote: First off, on the original question about SpringBeanAda

Re: [flexcoders] Tree item in datagrid ??

2006-08-30 Thread Valy Sivec
I sure you can. See the item renderer section from the Flex Developer Guide.Below is just a small example I put together. You just need to add  model.xml at your convenience. HTH,Valy                                                   

Re: [flexcoders] URL Request - absolute URL vs relative URL

2006-08-29 Thread Valy Sivec
Never mind... had a typo in the code.Thanks,ValyValy Sivec <[EMAIL PROTECTED]> wrote: Hello flexcoders,Is there any way I can use the URLRequest with a relative path?. I don't want to provide the absolute path in the AS code. Is there any way I can get the context pat

[flexcoders] URL Request - absolute URL vs relative URL

2006-08-29 Thread Valy Sivec
Hello flexcoders,Is there any way I can use the URLRequest with a relative path?. I don't want to provide the absolute path in the AS code. Is there any way I can get the context path from AS?.  I tried the relative path but it won't work... :(  var request:URLRequest = new URLRequest("h

[flexcoders] AWT-EventQueue-0" java.lang.NullPointerException

2006-08-23 Thread Valy Sivec
I have a FLEX application that runs on a Tomcat 5 server. I leave the application open over night and I see this error in the log. Have you guys seen anything like this?   I use Flex 2.0/Tomcat 5 on development env. Any suggestions?   Best regards, Valy Sivec         Exception in

[flexcoders] How to refresh datagrid's provider every 5 minutes?

2006-06-30 Thread Valy Sivec
Hello,I have a datagrid on a screen and the underline data that populates the datagrid's provider changes frequently. I'd like to have a way to refresh the dataprovider every 5 minutes or so. Is there a way to do that?.Thanks,Valy Do you Yahoo!? Next-gen email? Have it all with the all-new Y

RE: [flexcoders] Flash Player 8 Upload/Download support -- Failed to implement

2006-06-22 Thread Valy Sivec
  Hello,   I tried to integrate the solution presented here http://www.adobe.com/devnet/flex/articles/fp8_features.html.   and ran into some sort of a problem and for the life of me can't figure it out I can't upload any file even the backend worked before using the HTML upload.   The

[flexcoders] Flash Player 8 Upload/Download support

2006-06-21 Thread Valy Sivec
Hello, I read somewhere that Flash Player 8 adds Download/Upload support. I was wondering if you can point me to any resource in this regard or any samples would be greatly appreciated. I had implemented the upload functionality using HTML - file upload tag - but I'd like to migrate to Flash if

RE: [flexcoders] RE: Session Timeout Problem

2006-06-15 Thread Valy Sivec
If I remember well, there are some details about this issue in flexdoc. Pretty much follows Carson's explanation. Also, if you extend your search you'll find examples posted on this forum.Regards,ValyCarson Hager <[EMAIL PROTECTED]> wrote:That's the kicker with Fo

RE: [flexcoders] The End, A: YES, YES >> Is Adobe a reasonable business partner?

2006-06-09 Thread Valy Sivec
Robert, I'm kinda reluctant when I see people that know absolute truth and see all sorts of conspiracy around them. I believe M$ did a lot to this industry ( I'm not even a .net programmer ) in terms of innovation and software development and at this moment Adobe(Macromedia) still have to grow t

RE: [flexcoders] A: YES, YES >> Is Adobe a reasonable business partner?

2006-06-08 Thread Valy Sivec
Is this kind of message adding any value to the flexcoders comunity? I don't think so. I think that this forum should stay focused on Flex core issues and let time speak about how successfull is Flex vs.others or how much better is Adobe vs.other software vendors.Kind regards,ValyRobert Thompson

[flexcoders] Flex2 Beta2 Error page

2006-05-15 Thread Valy Sivec
Just an fyi for adobe guys,It looks that the error page is pointing to the Flex 1.5 documentation http://livedocs.macromedia.com/flex/15/asdocs_en/index.htmlValy Love cheap thrills? Enjoy PC-to-Phone calls to 30+ countries for just 2¢/min with Yahoo! Messenger with Voice. -- Flexcoders M

[flexcoders] Flex Formatters

2006-05-12 Thread Valy Sivec
Hello,I was wondering why formatters don't have an unformat method. do they?. I have an editable grid and the users want to have excel like formatting and it seems foolish to me trying to unformat the data once formatted Any help?Am I missing something here?. Thanks,Valy New Yahoo! Messeng

[flexcoders] FES-B2 - Memory leaking concern

2006-04-27 Thread Valy Sivec
I start playing with FES Beta 2 version and realized that if I left my computer on for a day or so with the flex app running the computer will eventually run out of RAM and a low virtual memory warning will show.I know that there are few docs that tells how the player works and I was wondering i

RE: [flexcoders] Flex2B2: JAVA to AS object serialization issue

2006-04-24 Thread Valy Sivec
Peter&Matt, declaring the variable in the AS file fixed the JAVA to AS mapping.   Thanks a lot. Valy   Peter Farland <[EMAIL PROTECTED]> wrote: Valy, the only bug I know of in this area for Beta 2 has to do with AMF 0. If you're not changing the objectEncoding of the underlying NetConn

RE: [flexcoders] Flex2B2: JAVA to AS object serialization issue

2006-04-23 Thread Valy Sivec
ve a var of type org.ifm.model.PhoneNumber, not just the RemoteClass declaration.  Or there’s a compiler argument called include-classes I think that you could use to make sure it gets included, you’d need to check the docs for that.   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] Flex2B2: JAVA to AS object serialization issue

2006-04-23 Thread Valy Sivec
oups.com [mailto:[EMAIL PROTECTED] On Behalf Of Valy Sivec Sent: Friday, April 21, 2006 11:59 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex2B2: JAVA to AS object serialization issue Hello,   I ran into something I woudn't expect to be a problem. Here is the stor

[flexcoders] Flex2B2: JAVA to AS object serialization issue

2006-04-21 Thread Valy Sivec
Hello,   I ran into something I woudn't expect to be a problem. Here is the story.   Have a simple data object in Java that is passed to the Flash player via remote object call. I see in the log that the object type is what I expect to have but when I trace the object value via Alert message

Re: [flexcoders] Flex 2b2: TitleWindow & Cairngorm

2006-04-19 Thread Valy Sivec
Thanks Jester.ValyJesterXL <[EMAIL PROTECTED]> wrote: http://www.darronschall.com/weblog/archives/000224.cfm   - Original Message - From: Valy Sivec To: flexcoders@yahoogroups.com Sent: Wednesday, April 19, 2006 2:27 PM Subject: Re: [flexcoders] Flex 2b2: Title

Re: [flexcoders] Flex 2b2: TitleWindow & Cairngorm

2006-04-19 Thread Valy Sivec
I tried to dispatch an event registered with the Cairngorm controller from a titlewindow but without much luck.The following code doesn't work used from the TitleWindow but works when called from the main panel that creates the TitleWindow.  // dispatch event  var evnt : SaveIndividualEvent = ne

RE: [flexcoders] FDS & Hibernate

2006-04-17 Thread Valy Sivec
My understanding is that with FDS at this moment you shouldn't write any DAO code and just the mapping files should suffice. On the other hand, are Hibernate features that I don't see how to implement them with the current Hibernate adapter; might be just me... Anyway, I have chosen to use Java

RE: [flexcoders] FDS & Hibernate

2006-04-14 Thread Valy Sivec
groups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Valy Sivec Sent: Thursday, April 13, 2006 2:23 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] FDS & Hibernate  I start looking into the Data Services topics a little bit and I see that for each destination there is a identity prope

[flexcoders] FDS & Hibernate

2006-04-13 Thread Valy Sivec
I start looking into the Data Services topics a little bit and I see that for each destination there is a identity property that needs to be defined. I have the data persistence layer implemented with Hibernate and I was wondering how Flex DES will handle objects with the identity propetry NULL,

[flexcoders] VerifyError: Error #1042: Not an ABC file. major_version=46 minor_version=16

2006-04-10 Thread Valy Sivec
Installed the last version of Flash Player and when I want to run the samples app I get an alert window and the error message reads like:   VerifyError: Error #1042: Not an ABC file.  major_version=46 minor_version=16. Below are 2 buttons "Dismiss all" and Continue. I see this problem only on

Re: [flexcoders] Deploy Flex 2 & ES on JBoss

2006-04-10 Thread Valy Sivec
Thanks, that fixed the issue.   ValyMuzak <[EMAIL PROTECTED]> wrote: You may have to update the xalan.jar as explained here:http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904353regards,Muzak- Original Message ----- From: "Valy Sivec" <[EMAIL PROTECT

[flexcoders] Deploy Flex 2 & ES on JBoss

2006-04-10 Thread Valy Sivec
Hello,   I'm having problems delpoying a demo application developed with Flex2 & Data Services on JBoss 4. It works fine on JRun4 ( integrated version with Flex ) but it won't deploy successfully on JBoss. Please  see the error stack below. Any suggestions? I tried to find any documentation bu

[flexcoders] Samples and JBoss4

2006-04-07 Thread Valy Sivec
I would like to have samples.war deployed on JBoss4 but without any luck yet. Do you have any suggestions?.  Do I need to add something to JBoss? Thanks,Valy How low will we go? Check out Yahoo! Messenger’s low PC-to-Phone call rates. -- Flexcoders Mailing List FAQ: http://groups.yahoo.c

Re: [flexcoders] Re: RIA Certified Developer/Architect

2006-02-28 Thread Valy Sivec
Joe,  I'm not in a position to offer you a job but I would if I was looking for somebodyI would hire you as my boss if I could...Have a nice day!.ValyJoe Berkovitz <[EMAIL PROTECTED]> wrote: I am sure that there are many viewpoints on this subject, and I won't presume to have the "right" one

RE: [flexcoders] Flex 1.5: AS2 serialization issue . Parent/Child data model implementation

2006-01-04 Thread Valy Sivec
Hello Flexcoders, here I am again... I have set the logging level to Debug in the gateway-config.xml and was able seeing how data is sent on the wire However, I wasn't able to figure out what's wrong with the code.I have pasted below the JAVA/AS2 data model and also the AMF log messages. If

Re: [flexcoders] How to detect the session time out in flex application

2006-01-04 Thread Valy Sivec
Do you use any type of authentication? Do you use Java on the server side?.Valyloveewind <[EMAIL PROTECTED]> wrote: I have a approach that use setInterval() in application page to detect the session time out,howerver, it seems difficult, who have experience in detecting session ? I'd like t

RE: [flexcoders] FLEX app over HTTPS

2006-01-03 Thread Valy Sivec
The application is deployed under JBoss Portal and is secured with OpenLdap.I'm having problems accessing the apps with IE under HTTPS. It works when use Mozilla Firefox but can't figure out what is wrong on IE.I have to find a spare box and edit the registry as Peter suggested me in a previous

[flexcoders] FLEX app over HTTPS

2006-01-03 Thread Valy Sivec
Hello Flexcoders,   I have developed a web flex application and I have some difficulties accessing the app under HTTPS on IE. It looks that the remote object calls under HTTPS are spinning without returning any result back. Am I missing any configuration?   The application works fine unde

RE: [flexcoders] Flex 1.5: AS2 serialization issue . Parent/Child data model implementation

2006-01-03 Thread Valy Sivec
Peter, thanks for the message. I' got caught doing other stuff for now but I'll give it a try afternoon.Is there any way I can see what gets sent on the wire other than dumping the value object in the log? Thanks, ValiPeter Farland <[EMAIL PROTECTED]> wrote: AMF does suppo

RE: [flexcoders] Flex 1.5: AS2 serialization issue . Parent/Child data model implementation

2006-01-02 Thread Valy Sivec
I forgot to mention that the value obejects have the default constructor.ValyValy Sivec <[EMAIL PROTECTED]> wrote:Peter,Here is the serverAPI,public class Parent implements Serializable {   private String property;   private Set  childs;      have here get/set methods}public class Child impl

RE: [flexcoders] Flex 1.5: AS2 serialization issue . Parent/Child data model implementation

2006-01-02 Thread Valy Sivec
Peter,Here is the serverAPI,public class Parent implements Serializable {   private String property;   private Set  childs;      have here get/set methods}public class Child implements Serializable{   private String property;   private Parent parent;   with get/set methods}I have a one-to-many r

[flexcoders] Flex 1.5: AS2 serialization issue . Parent/Child data model implementation

2006-01-02 Thread Valy Sivec
Hi Flexcoders, I have a  master/detail data entry form and I have some difficulties transfering the data objects from AS2 to the server side. The data persitence is implemented with Hibernate and I have a one to many relations between a Parent object and his  Child(s) objects. Here is the AS2

[flexcoders] Flex&Hibernate lazy fetching

2005-11-30 Thread Valy Sivec
Hi, I'm using Flex with Hibernate3 for data persistence and I'm having issues with the lazy fetching for one to many object relations. Have you seen this before? Any suggeestions? Thanks, Valy __ Yahoo! Music Unlimited Access over 1 million so

Re: [flexcoders] Re: Java Pojo to AS pojo with ant

2005-11-21 Thread Valy Sivec
is that we have the option to choose...and with open source projects even more... go and fix the issue in the code if you have to... My appologies to the Flexcoders; this not being a Flex related message. Regards, Valy Sivec --- JesterXL <[EMAIL PROTECTED]> wrote: >

RE: [flexcoders] Remote Objects, must be on the local server?

2005-10-17 Thread Valy Sivec
ng: > > http://livedocs.macromedia.com/flex/15/asdocs_en/mx/servicetags/RemoteOb > ject.html > > Thanks for you previous reply! > > > > From: flexcoders@yahoogroups.com > [mailto:[EMAIL PROTECTED] On > Behalf Of Valy Sivec > S

Re: [flexcoders] Remote Objects, must be on the local server?

2005-10-17 Thread Valy Sivec
I would think that the RO object and flex framework must be on the same server. The ROs are plain java classes - and act as proxies to any remote service you might want to use, EJBs per example.. HTH, Valy --- "Mink, Joseph" <[EMAIL PROTECTED]> wrote: > Do remote Java objects in Flex have to ex

Re: [flexcoders] Virtual mapping w/ Flex server

2005-10-17 Thread Valy Sivec
This is a JRun configuration, not Flex related. In production you might want to change the reload/compile values. Regards, Valy FILE: jrun-web.xml and add this file under WEB-INF folder. http://www.macromedia.com/dtd/jrun-web.dtd";> YOURAPP true true /pdfreports/* D:/Lapto

Re: [flexcoders] how to create new session each time

2005-10-06 Thread Valy Sivec
Dandip,   You might pay more attenttion at the way a j2ee/flex application can be structured and see that not all the time you need abc.mxml and xyz.mxml to navigate from a screen to another. Look at the stackview container and you'll have to manage your application state programatically for eac

Re: [flexcoders] Combobox : Display tooltip scrolling over the elements

2005-08-12 Thread Valy Sivec
Manish, the code you sent works like a charm.   I tried and worked as well. THANK YOU for your help. Valy Manish Jethani <[EMAIL PROTECTED]> wrote: On 8/11/05, Valy Sivec <[EMAIL PROTECTED]> wrote:> I poke around the combobox component without any> luck... no toolt

Re: [flexcoders] Combobox : Display tooltip scrolling over the elements

2005-08-11 Thread Valy Sivec
Hello, I poke around the combobox component without any luck... no tooltip :(( Below is the code I used. Any ideas? Thanks, Valy http://www.macromedia.com/2003/mxml"; height="480" width="800" marginBottom="0" marginLeft="0" marginRight="0" marginTop="0" creationComplete="appIni

[flexcoders] Combobox : Display tooltip scrolling over the elements

2005-08-10 Thread Valy Sivec
Hello Flexcoders, I ran into this issue today: I have a combobox populated with some data. The labels length is quite long, so I would like to have a tooltip displayed when scrolling the mouse over an item from the list. I saw "showDataTips", "showScrollTips" for the list control but not for the C

RE: [flexcoders] Flex Install on IIS

2005-08-03 Thread Valy Sivec
he same jrun_iis6.dll that .cfm uses. Am I > missing more? > > Thanks > > Agha Mehdi > IDT - eBusiness Program Manager > > -Original Message- > From: flexcoders@yahoogroups.com > [mailto:[EMAIL PROTECTED] On > Behalf Of Valy Sivec > Sent: Wednesday, Augu

RE: [flexcoders] Flex Install on IIS

2005-08-03 Thread Valy Sivec
I suspect you haven't configured the IIS web connectior. Valy --- "Mehdi, Agha" <[EMAIL PROTECTED]> wrote: > Alright, I followed all the steps listed here > > > > http://www.macromedia.com/support/documentation/en/flex/1_5/flexforcf.html >

RE: [flexcoders] Re: If I buy a flex license can I host other peoples apps on the license?

2005-07-19 Thread Valy Sivec
Many times companies have a portfolio of apps that are sold to their clients. Due to some usability things, if you have a client that likes Flex interfaces or accepted an application written in Flex because it looks cool or is just different... going back to straight HTML/JSP/ASP app will be a

RE: [flexcoders] Re: If I buy a flex license can I host other peoples apps on the license?

2005-07-19 Thread Valy Sivec
It's kinda childish to think that for a billion dollar company  60k-120k in Flex's fees is still a bargain... Don't know why some people ignore the fact that Flex is just only a component ( presentation layer )  and in addition to Flex you have to invest in J2EE or .NET infrastructure.   Imag

Re: [flexcoders] Re: Mouse click on panel header

2005-07-06 Thread Valy Sivec
e:> Panels have a mousedown="" property that you can use.> > > --- In flexcoders@yahoogroups.com, Valy Sivec <[EMAIL PROTECTED]>> wrote:> > Hello,> >> > Is there any way I can catch the mouse click on a> > panel header?> >> &g

[flexcoders] Mouse click on panel header

2005-07-05 Thread Valy Sivec
Hello, Is there any way I can catch the mouse click on a panel header? Thanks, Valy Yahoo! Sports Rekindle the Rivalries. Sign up for Fantasy Football http://football.fantasysports.yahoo.com -- Flexcoders Mailing L

RE: [flexcoders] render Pdf document in a flex app

2005-06-10 Thread Valy Sivec
d the two > together... > > ____ > > From: flexcoders@yahoogroups.com > [mailto:[EMAIL PROTECTED] On > Behalf Of Valy Sivec > Sent: Friday, June 10, 2005 9:04 AM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] render Pdf document in a fle

[flexcoders] render Pdf document in a flex app

2005-06-10 Thread Valy Sivec
Hello flexcoders, How can I render a pdf document in a Flex container (panel)? I have some library of pdf documents that I would like to display them within the app, no pop-ups or things like that... I'd like to be able include the pdfs at runtime... Thanks, Valy

Re: [flexcoders] Cairngorm .99 & Hibernate 3

2005-06-08 Thread Valy Sivec
gt; can be found at: > http://www.everythingflex.com/blog/1/2005/05/AS2-Value-Object-Generator-for-Hibernate-Synchronizer.cfm > > Do you currently use Hibernate on the back end ? > > Rich > > On 6/8/05, Valy Sivec <[EMAIL PROTECTED]> wrote: > > Rich, thanks for

Re: [flexcoders] Cairngorm .99 & Hibernate 3

2005-06-08 Thread Valy Sivec
Rich, thanks for sharing with us the sample!. Quick question for you: what tools have you used to generate the Hibernate XML mappings and the JAVA(POJO-DAO) code?. Is the tool compatible with Hibernate 3? or you manually made it Hibernate 3 compatible, replacing the Hibernate 2 with v.3? The exam

RE: [flexcoders] When do I need to Recompile mxml files?

2005-05-24 Thread Valy Sivec
Thanks  Abdul.  Do I need to re-compile  mxml files in case I made some changes to flex-config.xml?   Thanks again, Valy Abdul Qabiz <[EMAIL PROTECTED]> wrote: Hi,   Any changes to MXML & associated AS files would require recompilation. Any changes to backend logic (POJO, EJB) doesn't require

[flexcoders] When do I need to Recompile mxml files?

2005-05-24 Thread Valy Sivec
Hello flexcoders, I have a flex project and want to precompile the mxml files. I was wondering if I need to re-compile the mxml files in case for example I fix a bug in the business logic of a remote object method.. ( not method signature changes ). So, when do I need to recompile the mxml fil

RE: [flexcoders] Looking for a critique

2005-05-16 Thread Valy Sivec
It looks nice, I like it. Although, when entering an invalid zip code or 6 digits codes got an exception but you probably already know about it.   Great stuff!   ValyAllen Manning <[EMAIL PROTECTED]> wrote: Jeff,   I like it.  It reminds me of the new weather widget that you can get in Tiger. 

Re: [flexcoders] HTTP service & context.root

2005-05-12 Thread Valy Sivec
= true and replace the {context.root} in the flex-config.xml with the "myappcontext", the application works. Very confusing Am I missing something? Thanks, Valy --- Valy Sivec <[EMAIL PROTECTED]> wrote: > > Hello, > > In a flex application I have defined a se

[flexcoders] HTTP service & context.root

2005-05-12 Thread Valy Sivec
Hello, In a flex application I have defined a servlet as HTTP service ( see the conf. below ). In case the "production-mode" is set to false in the flex-config.xml everything works fine. Wanted to change the production-mode param to true, then I get an error "HTTP Service Fault". I woudn't want

RE: [flexcoders] Any Profiler Gurus Out There?

2005-05-11 Thread Valy Sivec
  Have you guys figured out this? I'm having the same problem I configured the profiler but wasn't able to see any call times/cumulative times etc Below is a snapshot of what I see, but nothing relevant Any idea? The "dat" file is generated under the "ProfilerData" directory but do

Re: [flexcoders] mx;Loader/ memory leaking/ any way to programatically clear the memory/browser crashes

2005-05-10 Thread Valy Sivec
stack or using separates applications would be the way to go     Thanks for your patience, ValyManish Jethani <[EMAIL PROTECTED]> wrote: On 5/10/05, Valy Sivec <[EMAIL PROTECTED]> wrote:> I'm wondering if adding this code on the "unload" event will help cleaning>

Re: [flexcoders] mx;Loader/ memory leaking/ any way to programatically clear the memory/browser crashes

2005-05-10 Thread Valy Sivec
Hello,   I'm experiencing odd behaviour from a flex app that uses mx:Loader to load some views. Under heavy load, loading/unloading a mxml file via mx:Loader puts the browser on his knees and finally crashes without logging anything in the log. I've monitored the RAM usage by the IE process and

[flexcoders] mx;Loader/ memory leaking/ any way to programatically clear the memory/browser crashes

2005-05-09 Thread Valy Sivec
Hi Flex gurus, I have this scenario: left page navigation with dynamic filter criteria and in the main screen I load sub-views via mx:loader tag. The user can make some real-time selections from the left page and as result I'll display on the right screen a different view via mx:Loader tag. Eve

Re: [flexcoders] Re: Cairngorm Result Question

2005-05-05 Thread Valy Sivec
Iain,   I think the input parameter for the onResult will contain the actual result.   Try:   public function onResult( result : Object ) : Void { var getInboxViewHelper = ViewLocator.getInstance().getViewHelper( "ControlView" ); getInboxViewHelper.fillInbox(result);}   You might want to use  mx

RE: [flexcoders] Error: The property being referenced does not have the static attribute.

2005-04-21 Thread Valy Sivec
> From: flexcoders@yahoogroups.com > [mailto:[EMAIL PROTECTED] On > Behalf Of Valy Sivec > Sent: Thursday, April 21, 2005 10:29 AM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Error: The property being > referenced does not have > the static attribute. > >

Re: [flexcoders] Error: The property being referenced does not have the static attribute.

2005-04-21 Thread Valy Sivec
It looks that if I substitute the binding with a static value it works... This doesn't work: Error: The property being referenced does not have the static attribute. This works: What am I missing? Thanks, Valy --- Valy Sivec <[EMAIL PROTECTED]> wrote: > Hi, >

[flexcoders] Error: The property being referenced does not have the static attribute.

2005-04-21 Thread Valy Sivec
Hi, I have a view container that includes a form and a sub-view - called viewPhones. I would like to pass the indi_id form element value from the parent to the "viewPhones", but I got an error, see below, and can't figure out why Any help would be appreciated. Thanks, Valy

[flexcoders] How can I determine what series of the pie chart I have clicked?

2005-04-20 Thread Valy Sivec
Have a pie chart and I would like to click on it and depending on what series I've selected to popup some details about it. Any help would be greatly appreciated, Valy __ Do you Yahoo!? Yahoo! Small Business - Try our new resources site! http

  1   2   >