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:24

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:

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] HTTP services / Error handler

2007-02-26 Thread Valy Sivec
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 ( xml over http ). Thanks, Valy Sivec

[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

Re: [flexcoders] ComboBox, selectedIndex property

2007-02-08 Thread Valy Sivec
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 valysivec27@ yahoo.com wrote: If I declare mx:ComboBox id =cb selectedIndex=-1 dataProvider={dp} and have the data

[flexcoders] ComboBox, selectedIndex property

2007-02-07 Thread Valy Sivec
If I declare mx:ComboBox id =cb selectedIndex=-1 dataProvider={dp} 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

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

2007-01-15 Thread Valy Sivec
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, January 12, 2007 3

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

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

2007-01-12 Thread Valy Sivec
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 No need to miss

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

2006-12-13 Thread Valy Sivec
! Dimitrios Gianninas RIA Developer Optimal Payments Inc. _ _ __ From: [EMAIL PROTECTED] ups.com [mailto:[EMAIL PROTECTED] ups.com] On Behalf Of Valy Sivec Sent: Tuesday, December 12, 2006 10:26 AM To: [EMAIL PROTECTED] ups.com Subject: Re: [flexcoders] file

[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] 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

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 I

[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 declare

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. and

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] Array to

[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.

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] 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: Valy Sivec [EMAIL

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

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

[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

RE: [flexcoders] checkCellRender Validation

2006-11-06 Thread Valy Sivec
... 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

[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 sivec

[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:

[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

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?xml version="1.0" encoding="utf-8"?mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"

[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

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 path

[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 thread

[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

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

2006-06-22 Thread Valy Sivec
Hello,Itried 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

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

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

[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

[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!

[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

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

2006-04-24 Thread Valy Sivec
PeterMatt, declaring the variable in the AS file fixed the JAVA to AS mapping.Thanks a lot. ValyPeter 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

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

2006-04-23 Thread Valy Sivec
om [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 issueHello,I ran into something I woudn't expect to be a problem. Here is the story.Hav

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

2006-04-23 Thread Valy Sivec
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 Valy Sivec Sent: Sunday

[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
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 = new

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: TitleWindow

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; mightbe just me... Anyway, I have chosen to use

[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

[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 but

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=bbop=viewtopicp=3904353regards,Muzak- Original Message - From: "Valy Sivec" [EMAIL PROTECTED]To:

[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

[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:

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] 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 to

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] 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

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 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

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 relation

[flexcoders] FlexHibernate 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

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

2005-11-21 Thread Valy Sivec
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: EJB is about to die Needs food badly! - Original

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. ?xml version=1.0 encoding=ISO-8859-1? !DOCTYPE jrun-web-app PUBLIC -//Macromedia, Inc.//DTD jrun-web

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 exist

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

2005-10-17 Thread Valy Sivec
/servicetags/RemoteOb ject.html Thanks for you previous reply! From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Valy Sivec Sent: Monday, October 17, 2005 3:08 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Remote Objects, must

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 mx:ComboBox open="event.target.dropdown.showDataTips = true" / 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

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 ?xml version=1.0? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; height=480 width=800 marginBottom=0 marginLeft=0 marginRight=0

[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

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] Flex Install on IIS

2005-08-03 Thread Valy Sivec
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, August 03, 2005 12:01 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Flex

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 isstill abargain... Don't know whysome 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. Imagine

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/ASPapp will be a

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

2005-07-06 Thread Valy Sivec
D] wrote: 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? Thanks, Valy

[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

[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] render Pdf document in a flex app

2005-06-10 Thread Valy Sivec
Of Valy Sivec Sent: Friday, June 10, 2005 9:04 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] render Pdf document in a flex app 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

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

[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

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 flex

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. I

[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

Re: [flexcoders] HTTP service context.root

2005-05-12 Thread Valy Sivec
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 servlet as HTTP service ( see the conf. below

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

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

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

2005-05-10 Thread Valy Sivec
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 the memorybecause I'm suspecting some memo

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

[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 mx:Form

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

2005-04-21 Thread Valy Sivec
missing? Thanks, Valy --- Valy Sivec [EMAIL PROTECTED] wrote: 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

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

2005-04-21 Thread Valy Sivec
:[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. Hi, I have a view container that includes a form and a sub-view - called

[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!

RE: [flexcoders] reset views fields values for a stackview panel

2005-04-16 Thread Valy Sivec
Hi Matt, I tried distoryAllChildren for the viewStack but the application has been put on his knees I got an warning message from the player that a script is causing some problems... don't remember the message... I think I would like the approach you mention with the binded model to the

[flexcoders] reset views fields values for a stackview panel

2005-04-15 Thread Valy Sivec
I have a view stack containers with multiple sub-views that can suport add/edit/delete functionalities. At some point I need to clear all the stack's views... imagine I have navigated through some screens and have an option to start from the beggining and need somehow to clear all the views

[flexcoders] Cairngorm flex/AS2 framework naming convention

2005-04-14 Thread Valy Sivec
Hello, My undertanding is that this framework is free and was initiated by the guys from "iteration::two", and we all are gratefull for their kindness to share with us this framework. Although, I have a question about it... Why should the packages have been named using the company name?

RE: [flexcoders] Hide Datagrid column

2005-04-11 Thread Valy Sivec
n.application);} } TIA, ValyMatt Chotin [EMAIL PROTECTED] wrote: If you want a column to not show you’ll basically need to specify the other columns (the ones you want to show) manually. So create DataGridColumn entries for all columns you want and leave off the primary key. Matt

[flexcoders] How do you handle Timestamp fields?

2005-04-11 Thread Valy Sivec
Guys, In Oracle I have a column type DATE and the Oracle thin driver see this column as TIMESTAMP. AMF transform java.util.Date to Date in AS2... and it doesn't know about java.sql.Timestamp What's the best way in hadling with Timestamp data type in a Flex App?. Should I pass back and

RE: [flexcoders] Hide Datagrid column

2005-04-11 Thread Valy Sivec
should work I'd think (well and dataProvider should be {addressModel} with binding tags but that's probably just a typo here. Matt _ From: Valy Sivec [mailto:[EMAIL PROTECTED] Sent: Monday, April 11, 2005 5:38 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders

RE: [flexcoders] Cairngorm framework question

2005-04-11 Thread Valy Sivec
to make two separate calls. If the update fails send false and empty address object. That should work both ways and will help minimizing individual calls to the service. Does it make sense? -Original Message- From: Valy Sivec [mailto:[EMAIL PROTECTED] Sent: Monday, April 11

  1   2   >