[flexcoders] ItemRenderes are consuming more memory

2008-10-28 Thread jitendra jain
I read Alex Blog on Item Renderers. I understood what Alex needs to say. I have a tabBar in my application and a datagrid in the viewstack. whenever anyone clicks on the tab ,my datagrid data changes. I have 32 columns, with 5 columns having renderes. I have renderers for displaying

[flexcoders] Re: Extending the Datagrid to enable paging

2008-10-28 Thread Claudiu Ursica
check this one, http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetailsproductId=2postId=11083 hth, Claudiu --- In flexcoders@yahoogroups.com, oneworld95 [EMAIL PROTECTED] wrote: Hi, all. For a current project, I need to extend the DataGrid to enable paging of the data. Can

[flexcoders] Html file in Flex application.

2008-10-28 Thread kotha poornima
Hi all, Can i embed html file in my flex application? If it is possible please give me an idea how can i do the same. Thanks in Advance, Poornima.

Re: [flexcoders] ItemRenderes are consuming more memory

2008-10-28 Thread claudiu ursica
I'm not sure what you are trying to do, but try to add new instances to the list only when needed, otherwise just update already existing elements. Cheers, Claudiu From: jitendra jain [EMAIL PROTECTED] To: flex group flex flexcoders@yahoogroups.com Sent:

Re: [flexcoders] Html file in Flex application.

2008-10-28 Thread claudiu ursica
Lots of components within the framework (the VBox or HBox for example) have the the htmlText property. Just assign your page to that property. However I am absolutely sure that there is somewhere there an example related to this issue, they have embeded yahoo in flex. Just cannot find it now,

Re: [flexcoders] Html file in Flex application.

2008-10-28 Thread Ralf Bokelberg
Unfortunately it is not that easy. The Flex/Flash TextField displays a small subset of html only, eg. a, p, b, i, u, li, font and br. All the other tags are ignored A common method to display a full fledged html page is to place a html iframe on top of the Flex application. Alex Harui showed a

Re: [flexcoders] Html file in Flex application.

2008-10-28 Thread Guy Morton
Use an iFrame and float your html over your flex app. It works surprisingly well... http://www.deitte.com/archives/2006/08/finally_updated.htm Of course, it may not meet your needs but it's another approach worth considering. Guy On 28/10/2008, at 7:40 PM, kotha poornima wrote: Hi

[flexcoders] Sorting problem on headerRenderer in placesortArrow

2008-10-28 Thread sinacapho
Hi , I have a problem in sort the datagrid. What i am doing is i have a datagrid with a few columns (using headerrenderer). When i click on the column , the sort perform but the label on the headerrenderer disappear. The browser will come slower and slower then finally hang up. But after i

Re: [flexcoders] Html file in Flex application.

2008-10-28 Thread kotha poornima
Hi, By using this IFrame it is possible to work with some local html files. And ofcourse, iam getting these errors: 1.Error: ExternalInterface is not available in this container. Internet Explorer ActiveX, Firefox, Mozilla 1.7.5 and greater, or other browsers that support NPRuntime are required.

[flexcoders] Secure AMF - Error #2004: One of the parameters is invalid

2008-10-28 Thread taze170171
Hello! We are using AIR together with LCDS. Until now we were using an RTMPS channel for communication. There everything works fine. For fallback handling we configured now an Secure AMF Channel. When using this channel the following error occurs when calling fill methods: ArgumentError:

Re: [flexcoders] Flex connection to Oracle 10g PL/SQL

2008-10-28 Thread Tom Chiverton
On Wednesday 22 Oct 2008, Juliano Mendes wrote: No need server side language. ... Oracle using a HTTP Service request to access directly a Stored Procedure and send a XML file back to Flex. Looks like a server side language, smells like a server side language... -- Tom Chiverton Helping to

Re: [flexcoders] Flex 3 Style Explorer is available

2008-10-28 Thread Tom Chiverton
On Friday 24 Oct 2008, Tracy Spratt wrote: In case you missed it. I had, cheers Tracy ! -- Tom Chiverton Helping to dramatically evolve plug-and-play customized products This email is sent for and on behalf of Halliwells LLP. Halliwells

Re: [flexcoders] Flex connection to Oracle 10g PL/SQL

2008-10-28 Thread Paul Andrews
- Original Message - From: Tom Chiverton [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, October 22, 2008 2:31 PM Subject: Re: [flexcoders] Flex connection to Oracle 10g PL/SQL On Wednesday 22 Oct 2008, Juliano Mendes wrote: No need server side language. ... Oracle

[flexcoders] Debugging advice appreciated ....

2008-10-28 Thread Mic
TypeError: Error #1034: Type Coercion failed: cannot convert mx.graphics::[EMAIL PROTECTED] to mx.graphics.IStroke. at mx.charts::AxisRenderer/measure()[C:\Work\flex\dmv_automation\projects\datavisualisation\src\mx\charts\AxisRenderer.as:1091] at

[flexcoders] Gosh what a state to be in..

2008-10-28 Thread Paul Andrews
I think I know the answer to this, but here goes.. Lets suppose I have an application with states A, B and C, plus the default. There are buttons in states A, B and default to switch the application to state C. That would be all fine and dandy, but once I have entered state C, I can press a

[flexcoders] Finding out the size of a component when everything is relative?

2008-10-28 Thread Libby
Flex 3 At run time I am trying to find out if user has expanded a canvas or not. When I query the component or its parents, I always get the original size, x y = 0, etc. In the debugger I can see $height and other $variables which appear to contain the correct values, but apparently this are

[flexcoders] Re: Gosh what a state to be in..

2008-10-28 Thread florian.salihovic
Hm, actually i don't quite get the problem, i think. States should be used in my opinion to really abstract view-states. The state of the application should be stored in a domain model. If u have buttons - just register listeners for the interaction and let a controller decide what to to

Re: [flexcoders] Re: Gosh what a state to be in..

2008-10-28 Thread Paul Andrews
- Original Message - From: florian.salihovic [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, October 28, 2008 11:59 AM Subject: [flexcoders] Re: Gosh what a state to be in.. Hm, actually i don't quite get the problem, i think. States should be used in my opinion to

Re: [flexcoders] Finding out the size of a component when everything is relative?

2008-10-28 Thread Michael Schmalle
Hi, The properties with $ signs mean they are wrapped and mx_internal. The $height and $width are the actual Flash Player version of height and width. At what point are you trying to get the height and width? Do you know for sure the canvas has children and has been measured and updated? If you

Re: [flexcoders] Html file in Flex application.

2008-10-28 Thread Terry Allen
Make sure you modify the html page that initiates the flex application. You will need to make some modifications to it in order for the iFrame to work. The example shows what you need to change/add to the file. On Tue, Oct 28, 2008 at 6:07 AM, kotha poornima [EMAIL PROTECTED]wrote: Hi, By

Re: [flexcoders] Multiple Project deployment

2008-10-28 Thread christian crisologo
Hi , Thanks for the reply and your advice.That's also what I'm thinking putting the two application in different folder. Is there's way controlling it through properties files like in java before building it?, or doing it to your framework to select which deployment you'll be released?, thanks

Re: [flexcoders] Re: Gosh what a state to be in..

2008-10-28 Thread Paul Andrews
In my case, on refection, it's probably easier to build separate state variants, so I'll have state A, B, C and the default, plus states aC and bC (going from a to C and from b to C). By using states aC and bC I can hide the view components that would otherwise be removed by just having a

[flexcoders] Possible? Charts - CatergoryAxis Group by Day/Time?

2008-10-28 Thread cox.blair
Thought I would ask the experts. I have a simple chart displaying data for about 60 days. The data consists of events which either occur once a day or multiple times a day. I've been asked that if an event occurs multiple times on a single day, to stack or group them on the chart. Stack may be

Re: [flexcoders] Re: Gosh what a state to be in..

2008-10-28 Thread Michael Schmalle
So are you talking about a state machine table implementation with push - pop based on the tables setup? IE you can only push if the context is this and you can only pop if the context is that This would definitely allow sub-sub states very easily and allow restriction in these sub states. I use

Re: [flexcoders] Flex 3 Style Explorer is available

2008-10-28 Thread Blair Cox
Has there been a change? I¹ve been trying this on and off for months now and I find there are parts that do not work ­ at least with Firefox on a Mac. Namely, Navigation - Accordion. When I attempt to alter the colours, or pretty well any of the settings, nothing happens in the sandbox. If I

RE: [flexcoders] Extending the Datagrid to enable paging

2008-10-28 Thread Gregor Kiddie
Matt Chotin (yes THE princess himself, *ahem*) wrote an excellent series of articles back in the mists of time that is an excellent primer of rolling your own paging. http://weblogs.macromedia.com/mchotin/archives/2004/03/large_data_sets.h tml That's the first article of 4 (IIRC). Gk.

Re: [flexcoders] Re: Gosh what a state to be in..

2008-10-28 Thread Paul Andrews
In my particular case it's a drill-down kind of interface, but it's possible to jump to a summary at any stage. Summary is independent of the context. Effectively I'm looking at a 'back' operation. Now that I've said that, I'm wondering - history manager.. - Original Message -

[flexcoders] Flex Facebook 5000 Fan Contest

2008-10-28 Thread agangji_con
Hey guys, My name is Areez, and I work for Adobe as part of the product marketing team for Adobe Flex. Just wanted to let you guys know about a contest we've got going on on the Adobe Flex page on Facebook. Details below: Adobe is giving away a free MacBook Air and a copy of Adobe® Creative

Re: [flexcoders] Flex 3 Style Explorer is available

2008-10-28 Thread Tom Chiverton
On Tuesday 28 Oct 2008, Blair Cox wrote: and I find there are parts that do not work - at least with Firefox on a Mac. FireFox on 'nix seems OK, in particular Namely, Navigation - Accordion. When I attempt to alter the colours, or pretty well any of the settings, nothing happens in the

[flexcoders] Re: Do you use a Mac?

2008-10-28 Thread ross_w_henderson
I switched about 10 months ago, and I'll still tell anyone who is interested how happy I am about it. I do all of my work, comfortably and happily, on a 15 MBP. The overall positive impact on my productivity is more than worth the 5x pricetag. But, on top of that, my working life is so much

[flexcoders] Re: Html file in Flex application.

2008-10-28 Thread nathanpdaniel
The link: http://blogs.adobe.com/aharui/2008/01/html_and_flex_1.html Everything you'd need to get started (according to the blog! :D) --- In flexcoders@yahoogroups.com, Ralf Bokelberg [EMAIL PROTECTED] wrote: Unfortunately it is not that easy. The Flex/Flash TextField displays a small subset

Re: [flexcoders] Flex 3 Style Explorer is available

2008-10-28 Thread Blair Cox
Yes, it's the current version, debug build. I'll try with Safari later, but really, if the CSS formatting doesn't work in my application running in Firefox, then... -- Blair From: Tom Chiverton [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com Date: Tue, 28 Oct 2008 13:36:33 +

RE: [flexcoders] Flex Facebook 5000 Fan Contest

2008-10-28 Thread Gregor Kiddie
I presume the usual guff about the prize only applying to certain parts of North America is in force. Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ Registered Number: 1788577 Registered in the UK

Re: [flexcoders] Flex Facebook 5000 Fan Contest

2008-10-28 Thread Paul Andrews
- Original Message - From: agangji_con [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, October 28, 2008 1:33 PM Subject: [flexcoders] Flex Facebook 5000 Fan Contest Hey guys, My name is Areez, and I work for Adobe as part of the product marketing team for Adobe Flex.

Re: [flexcoders] Flex 3 Style Explorer is available

2008-10-28 Thread Michael Schmalle
I get a bunch of weirdness in google chrome fp10. Seems like this history manager is buggy with the accordion. Clicking on some other controls the application jumps to different views. I do see the have Beta at the top, nothing like the beta trend. It's ok to have buggy software, just stick beta

Re: [flexcoders] Re: Do you use a Mac?

2008-10-28 Thread Paul Andrews
- Original Message - From: ross_w_henderson [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, October 28, 2008 1:39 PM Subject: [flexcoders] Re: Do you use a Mac? I switched about 10 months ago, and I'll still tell anyone who is interested how happy I am about it. I do

Re: [flexcoders] Flex Facebook 5000 Fan Contest

2008-10-28 Thread Paul Andrews
It is. :-( - Original Message - From: Gregor Kiddie To: flexcoders@yahoogroups.com Sent: Tuesday, October 28, 2008 1:45 PM Subject: RE: [flexcoders] Flex Facebook 5000 Fan Contest I presume the usual guff about the prize only applying to certain parts of North America is

Re: [flexcoders] form to pdf

2008-10-28 Thread Fotis Chatzinikos
look googling on coldfusion stream to file i got the following: http://blog.stevensross.com/2007/1/29/coldfusion-writing-binary-file-to-output-stream its the opposite, it opens a file and streams it to a client ... my cold fusion knowledge is tending to null :-) google a bit i am sure you will

Re: [flexcoders] form to pdf

2008-10-28 Thread Fotis Chatzinikos
this might help: http://www.quackit.com/coldfusion/tutorial/coldfusion_upload_file.cfm its an example to upload a file to a server On Tue, Oct 28, 2008 at 4:58 PM, Fotis Chatzinikos [EMAIL PROTECTED] wrote: look googling on coldfusion stream to file i got the following:

[flexcoders] best practice XML hyphens

2008-10-28 Thread Kenneth Sutherland
Hi I'm looking for info on best practices for creating XML and using hyphens inside the XML. The reason being that a feed that I'm having to work through contains the node language-block ln=en which makes it awkward to get at due to the '-'. I can only find one doc which isn't enough

[flexcoders] Problem using dataTipRenderer with dataTipItems

2008-10-28 Thread ericbichara
Hi, Im trying to copy the functionality of the following chart: http://www.nytimes.com/packages/khtml/2006/04/02/business/20060402_SECTOR_GRAPHIC.html I have a datagrid which displays the same data as the bubble chart and when i rollover a row in the datagrid, the corresponting chart item's

[flexcoders] Return two instances of objects keeping the same reference on the Actionscript s

2008-10-28 Thread João
Hello, imagine the following scenario: - backend in AMFPHP; - a remote procedure that returns a complex type: Categories[] CategoryVO (#12334) id: 1 name: Accounting etc... CategoryVO (#34221) id: 2 name: Reporting etc... - Another remote

[flexcoders] Re: Return two instances of objects keeping the same reference on the Actionscri

2008-10-28 Thread florian.salihovic
Could you not just use the old object again and just map in the new values? That's the only idea i have to make sure u'll have the same object all the time at runtime - which will ensure that there's no need for new references to be set. Best regards! --- In flexcoders@yahoogroups.com, João

[flexcoders] Checkbox in dataGrid

2008-10-28 Thread markgoldin_2000
Here is my DG: mx:DataGrid width=140 id=planversions mx:columns mx:DataGridColumn headerText=Time dataField=planversion/ mx:DataGridColumn headerText=Plan dataField=isplan rendererIsEditor=true

[flexcoders] Re: best practice XML hyphens

2008-10-28 Thread florian.salihovic
That's why many people tend to use camelcase i think... --- In flexcoders@yahoogroups.com, Kenneth Sutherland [EMAIL PROTECTED] wrote: Hi I'm looking for info on best practices for creating XML and using hyphens inside the XML. The reason being that a feed that I'm having to work

[flexcoders] Re: Finding out the size of a component when everything is relative?

2008-10-28 Thread Libby
actually the canvas is wrapped because the screen is too small (not mazimized). I need to know how much real estate the wrapped canvas is occupying. So far I can'r find any evidence internally that it is wrapped. I need to know the actual x,y of the lowest corner of it I guess. But how?

Re: [flexcoders] Re: Finding out the size of a component when everything is relative?

2008-10-28 Thread Michael Schmalle
Hi, Have you tried looking at the measuredWidth and measuredHeight properties of both? Mike On Tue, Oct 28, 2008 at 11:12 AM, Libby [EMAIL PROTECTED] wrote: actually the canvas is wrapped because the screen is too small (not mazimized). I need to know how much real estate the wrapped canvas

[flexcoders] Re: row color in advancedDataGrid

2008-10-28 Thread Mark
Anyone with any ideas? Thanks, Mark --- In flexcoders@yahoogroups.com, Mark [EMAIL PROTECTED] wrote: I have an ADG with about 5 columns and have used AdvancedDataGridRendererProvider to add a SUM at the bottom of a few of the numberd columns that are the last 2 columns. I'd like to

RE: [flexcoders] Sorting problem on headerRenderer in placesortArrow

2008-10-28 Thread Alex Harui
I don't recall any particular bug being fixed in Flex 3, but when the sort arrow is placed, the header renderer's width is reduced to make room. That could cause some sort of invalidation that creates more header renderers and maybe Flex 3 is less sensitive to that. I'd move to Flex 3 if you

RE: [flexcoders] Debugging advice appreciated ....

2008-10-28 Thread Alex Harui
Shared code problem usually due to modules. See my blog presentation on Modules. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mic Sent: Tuesday, October 28, 2008 4:08 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Debugging advice appreciated

Re: [flexcoders] Return two instances of objects keeping the same reference on the Actionscript s

2008-10-28 Thread Maciek Sakrejda
Tide from Granite Data Services is intended exactly for this situation, but it's Java-based. I believe Live Cycle Data Services also does something similar. I'm not sure if a similar library exists for AMFPHP. -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message-

[flexcoders] Re: FB: Extracting a folder contents into output folder while compiling

2008-10-28 Thread m_koks
Thanks Ryan!! --- In flexcoders@yahoogroups.com, Ryan Graham [EMAIL PROTECTED] wrote: Sure, you can create another folder in your flex project at the same level as src, then in Project Properties Build Path Source Path click Add Folder and point to the folder you just created. It will

[flexcoders] HTTPService returns error over HTTPS

2008-10-28 Thread Denis
Hi everybody, Has anyone encountered a problem of HTTPService returning HTTP request error over HTTPS while working fine over HTTP? We have checked the service, it is returning a proper XML dataset. Plus, in the session where the Flash player reports this error, we know that the service did return

Re: [flexcoders] Flex 3 Style Explorer is available

2008-10-28 Thread Matt Chotin
We know deep linking definitely doesn't work with Chrome. On 10/28/08 6:46 AM, Michael Schmalle [EMAIL PROTECTED] wrote: I get a bunch of weirdness in google chrome fp10. Seems like this history manager is buggy with the accordion. Clicking on some other controls the application jumps to

[flexcoders] Flex and Screen Readers

2008-10-28 Thread Gus
Hi, anyone have implemented a flex application with a screen reader beside JAWS. I'm going to start some tests with Thunder Screen Reader (open source) which is MSAA compliant and I was wondering if someone already done it. if so, it works on Linux/Mac?? Thanks in advance Gus

[flexcoders] Object databases

2008-10-28 Thread João
Hello, I am researching on Object Databases to integrate with our RIA solutions. We have to build a statistics system to handle complex databases that can have tables with more than 900.000.000 records. The system needs to be VERY efficient (i.e. return the result of a calculation in less than 4

Re: [flexcoders] Flex and Screen Readers

2008-10-28 Thread Weyert de Boer
Hey Gus, This page has some interesting information about this combination: http://www.adobe.com/accessibility/products/flex/ Yours, Weyert de Boer

Re: [flexcoders] Flex Facebook 5000 Fan Contest

2008-10-28 Thread Tom Chiverton
On Tuesday 28 Oct 2008, Gregor Kiddie wrote: I presume the usual guff about the prize only applying to certain parts of North America is in force. But North America is the world, right ? :-) -- Tom Chiverton Helping to completely morph user-centric compelling front-end internet partnerships

[flexcoders] Re: Changing MenuBar open and close Transitions

2008-10-28 Thread Tyler Kocheran
Do I need to define a custom ItemRenderer? On Mon, Oct 27, 2008 at 5:38 PM, Tyler Kocheran [EMAIL PROTECTED] wrote: How do I implement custom MenuBar opening and closing transitions? I've tried changing the showEffect and hideEffect properties on a MXML MenuBar node, but nothing changes.

[flexcoders] Re: Flex 2 to Flex 3 - LCDS

2008-10-28 Thread schneiderjim
Follow-up... what about charting? --- In flexcoders@yahoogroups.com, Dimitrios Gianninas [EMAIL PROTECTED] wrote: Yes you can leave LCDS as is and use Flex 3 for the UI portion, its what we have done here. Dimitrios Gianninas RIA Developer Team Lead Optimal Payments Inc.

[flexcoders] Re: best practice XML hyphens

2008-10-28 Thread Amy
--- In flexcoders@yahoogroups.com, Kenneth Sutherland [EMAIL PROTECTED] wrote: Hi I'm looking for info on best practices for creating XML and using hyphens inside the XML. The reason being that a feed that I'm having to work through contains the node language-block ln=en which makes

[flexcoders] Re: Return two instances of objects keeping the same reference on the Actionscript s

2008-10-28 Thread Amy
--- In flexcoders@yahoogroups.com, João [EMAIL PROTECTED] wrote: Hello, imagine the following scenario: - backend in AMFPHP; - a remote procedure that returns a complex type: Categories[] CategoryVO (#12334) id: 1 name: Accounting etc... CategoryVO

[flexcoders] domainMemory in FP10?

2008-10-28 Thread Brian Deitte
Does anybody know what domainMemory does in Flash Player 10? I was just looking through the new APIs, and I came across this: http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/system/ApplicationDomain.html#domainMemory The description is more than a little cryptic: Gets and sets

[flexcoders] FLEX 2: SelectedIndicies in mx:tree with allowmultipleSelection

2008-10-28 Thread digital_eyezed
Hi, I have a tree which is populated from an XML doc returned from a remote object. I assign this to the tree object and all is well. I have enabled allowmultipleselection as I want to get the data from a number of nodes when they are selected, so I have an itemClick function on the tree that

Re: [flexcoders] domainMemory in FP10?

2008-10-28 Thread Matt Chotin
Used for this stuff: http://www.peterelst.com/blog/2008/10/04/what-is-flacc-all-about/ On 10/28/08 9:55 AM, Brian Deitte [EMAIL PROTECTED] wrote: Does anybody know what domainMemory does in Flash Player 10? I was just looking through the new APIs, and I came across this:

Re: [flexcoders] domainMemory in FP10?

2008-10-28 Thread Brian Deitte
That was cruel, Matt, very cruel, as now I'm even more interested in how it works. :) On Tue, Oct 28, 2008 at 12:57 PM, Matt Chotin [EMAIL PROTECTED] wrote: Used for this stuff: http://www.peterelst.com/blog/2008/10/04/what-is-flacc-all-about/ On 10/28/08 9:55 AM, Brian Deitte [EMAIL

[flexcoders] Re: Flex Facebook 5000 Fan Contest

2008-10-28 Thread agangji_con
Sorry, that's my mistake, and I'll be sure to correct it in my future posts. Thanks for pointing it out. --- In flexcoders@yahoogroups.com, Paul Andrews [EMAIL PROTECTED] wrote: - Original Message - From: agangji_con [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday,

[flexcoders] Re: Do you use a Mac?

2008-10-28 Thread ross_w_henderson
What, specifically, would be a very long list, but I'll try to throw in some examples. To answer your question in a sentence, though: the reduced stress and increased productivity have come from using equipment that works reliably and efficiently. A much longer response: After I had moved over

[flexcoders] after drop image in canvas, image always moved

2008-10-28 Thread Willy Ci
Hi, can someone help me with the drag and drop problem I have? everytime I drop the image, it seems like random move few pix away from the dropped location, I been debug this problem for a while, can't find out why it happens. here is my code, thanks ahead!

[flexcoders] connect to sql server 2005!

2008-10-28 Thread pcnguyen1985
i using remoting to communicate between flex and asp.net. but i dont know how to connect to sql server 2005 in asp.net side. please help me thanks a lot.

[flexcoders] Seeking master/detail data grid example for CRUD app

2008-10-28 Thread pbrendanc
I have a data grid that shows a list of summary records. When I (double)click on a row I want to display an editable detail form that shows the selected record in detail and then hide the summary list.  Can anyone point me to any existing sample code  for  this kind of navigation. I'm interested

Re: [flexcoders] HTTPService returns error over HTTPS

2008-10-28 Thread SAAGAR SHETTY
Hi Denis, I have faced this issue once. The problem here was that the server side code was modifying some header values. In my case the problem was with the parameters Cache-Control and Pragma in the response header sent by back end. Do not modify these header parameter. It is because of some

RE: [flexcoders] Re: Flex 2 to Flex 3 - LCDS

2008-10-28 Thread Dimitrios Gianninas
what about it...thats on the Flex side...so u update your UI and thats it. Dimitrios Gianninas RIA Developer Team Lead Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of schneiderjim Sent: Tuesday, October 28, 2008

[flexcoders] Re: connect to sql server 2005!

2008-10-28 Thread oneworld95
You can search the web on that or post to the http://forums.asp.net to figure out how to do that. --- In flexcoders@yahoogroups.com, pcnguyen1985 [EMAIL PROTECTED] wrote: i using remoting to communicate between flex and asp.net. but i dont know how to connect to sql server 2005 in asp.net

Re: [flexcoders] domainMemory in FP10?

2008-10-28 Thread Brian Deitte
Ah, of course, I get it now. It's for pointers in ActionScript. On Tue, Oct 28, 2008 at 1:00 PM, Brian Deitte [EMAIL PROTECTED] wrote: That was cruel, Matt, very cruel, as now I'm even more interested in how it works. :) On Tue, Oct 28, 2008 at 12:57 PM, Matt Chotin [EMAIL PROTECTED] wrote:

[flexcoders] Read XML data in as ArrayCollection

2008-10-28 Thread oneworld95
Hi. I've got a Flex app that receives XML (resultFormat = e4x) data from a servlet in this format, premiums premium id=ABCDEF01 startcount=0 currentcount=0 categoryCD/category descriptionThe CD Description/description image id=3095 filenameABCDEF01__1225202763673.jpg/filename

[flexcoders] Help with iFrame navigateToURL

2008-10-28 Thread jlopes151
If I acvtivate an iFrame then try to navigateToURL the navigateToURL does not function. It throws no errors just does not travers to the next site. I can activate the navigation if done before the iFrame activates. Thanks for any help.

Re: [flexcoders] Re: connect to sql server 2005!

2008-10-28 Thread Mike Chabot
I would expect that every book on ASP.NET covers this topic in depth. If you don't know how to program ASP.NET then why are you using it? -Mike Chabot On Tue, Oct 28, 2008 at 1:34 PM, oneworld95 [EMAIL PROTECTED] wrote: You can search the web on that or post to the http://forums.asp.net to

[flexcoders] Re: Read XML data in as ArrayCollection

2008-10-28 Thread oneworld95
Never mind! Figured it out: arrCol = event.result.premiums.premium as ArrayCollection Also took off the resultFormat from the HTTPService call. --- In flexcoders@yahoogroups.com, oneworld95 [EMAIL PROTECTED] wrote: Hi. I've got a Flex app that receives XML (resultFormat = e4x) data from a

RE: [flexcoders] Re: Read XML data in as ArrayCollection

2008-10-28 Thread Tracy Spratt
That only works because the default resultFormat causes Flex to cnvert your xml into a nested structure of dynamic objects. One result of is is that child groups are converted to Array. I advise you do not do this. You lose the benefits of e4x expressions, and wind up with loosely typed

[flexcoders] Re: Debugging advice appreciated ....

2008-10-28 Thread Mic
Alex rules KO :-) plus another question By putting import mx.charts.chartClasses.IAxisRenderer; var temp1:AxisRenderer = new AxisRenderer; in main app, error is gone ... why this particular class I do not know, as all 4 modules use the same very complex custom chart. If I understand from the

[flexcoders] Re: Read XML data in as ArrayCollection

2008-10-28 Thread oneworld95
Hi, Tracy. Hadn't thought about that. I'll work on implementing your suggestion. Thanks. --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: That only works because the default resultFormat causes Flex to cnvert your xml into a nested structure of dynamic objects. One

RE: [flexcoders] Re: Read XML data in as ArrayCollection

2008-10-28 Thread Tracy Spratt
Please, do, the default resultFormat is evil ;) Here is a quick, untested start. _acPremiums = new ArrayCollection() var xmlResult:XML = XML(event.result); var xlPremiums:XMLList = xmlResult.premium; //or xmlResult.children(); var xmlPremium:XML var voNew:MyVO; for () var

[flexcoders] AIR write file - prepended with irregular character

2008-10-28 Thread Ben Marchbanks
I am creating XML files to File.applicationStorageDirectory and the file gets created without error. Unfortunately there is an irregular character at the beginning of the file contents which does not exist in the XML. How can I prevent this ? òOpenShipments xmlns=x-schema:OpenShipments.xdr

[flexcoders] Re: BlazeDS, List of VOs inside a VOs won't translate

2008-10-28 Thread adam.bender
I realize this reply is coming a little late, but when I recently ran into this problem and found a simple fix. As it turned out I had an object that contained a list of subordinate objects like so: [Bindable] [RemoteClass(alias=com.bender.spotlist.dto.Spot)] public class Spot

[flexcoders] Re: How to get selected row in AdvancedDataGrid with Hierarchical Data?

2008-10-28 Thread dfstewart3
I would like to bump this up as I am having the same issue. Does anyone know of a resolution? Thanks! --- In flexcoders@yahoogroups.com, Djamshed [EMAIL PROTECTED] wrote: thanks for reply. selectedItem works perfect in the described case, but it doesn't seem to work with

[flexcoders] Re: Replacing ADG dataProvider

2008-10-28 Thread whatabrain
Yes. And it's working, because if I modify an element of the array, the grid updates immediately. --- In flexcoders@yahoogroups.com, greg_lafrance [EMAIL PROTECTED] wrote: Are you using data binding? [Bindable] d:ArrayCollection; ... mx:AdvancedDataGrid dataProvider={d}.../ Greg

[flexcoders] TabBar Background Color

2008-10-28 Thread Mike Oliver
Is there a way to control/set the background of a TabBar so the selected Tab's background color matches the viewstack it controls background color? -- View this message in context: http://www.nabble.com/TabBar-Background-Color-tp20212407p20212407.html Sent from the FlexCoders mailing list

[flexcoders] TabBar ViewStack

2008-10-28 Thread Mike Oliver
I have a TabBar controlling a ViewStack and I want the border on the view stack canvas to be hidden as it crosses under the selected tab so there is no line between the text in the tab and the canvas it controls. -- View this message in context:

[flexcoders] Programatically skinning a container, but what to do about the nested children?

2008-10-28 Thread Todd
I've created a custom skin and applied it to a VBox. This skin isn't just a regular border, but has some file-tab like protrusion on one side. The border looks like: ___ | | |

[flexcoders] Re: Read XML data in as ArrayCollection

2008-10-28 Thread oneworld95
Thanks, Tracy. Also came across this technique: http://codejockeyscorner.blogspot.com/2007/12/flex-xml-object-to-arraycollection.html BTW, do you have a blog? Thanks. --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Please, do, the default resultFormat is evil ;)

[flexcoders] Re: Read XML data in as ArrayCollection

2008-10-28 Thread oneworld95
What is the MyVO? Is that a custom object class? Thanks. --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Please, do, the default resultFormat is evil ;) Here is a quick, untested start. _acPremiums = new ArrayCollection() var xmlResult:XML =

RE: [flexcoders] Secure AMF - Error #2004: One of the parameters is invalid

2008-10-28 Thread Jeff Vroom
This error usually means that the player has received an Externalizable type via AMF but there's not an Externalizable object registered for that alias. I am having trouble coming up with a way that would happen only on an HTTP based AMF channel since RTMP also encodes its data using AMF, it

[flexcoders] What the heck am I doing wrong with my GroupingCollection?

2008-10-28 Thread Mark
I have an AdvancedDataGrid where I'm trything to display the data in groups. The column order is as follows -- Person Name, Project, Date, and a few numbered data columns. I'm tring to sort my data in the order of my columns, Name, Project, Date. Here's my GroupingCollection:

[flexcoders] Re: Programatically skinning a container, but what to do about the nested children?

2008-10-28 Thread Todd
Crap, the email messed up my beautifully renditioned ASCII art of what I was drawing. Anyway, I was basically trying to show that there's a hanging tab off the main part of the container, effectively increasing the size of the container. --- In flexcoders@yahoogroups.com, Todd [EMAIL PROTECTED]

RE: [flexcoders] AIR write file - prepended with irregular character

2008-10-28 Thread Jim Hayes
I've seen this. I think it's maybe a BOM (Byte Order Marker ). Something that more technical people than myself know about,if I'm even correct about that. I may not be. There are two ways to write the text from AIR(writeUTFBytes and e the other one, sorry to be vague, I might not

[flexcoders] Daily WTF... Property top not found on mx.containers.HBox and there is no default value.

2008-10-28 Thread Adrian Williams
All, Ok, so this is a bit infuriating...how is it that this is choking on my setting a top property from within a state for an HBox, which by all appearances is a very valid property for an HBox? All I've found on Google is everyone saying...'oh you need to get the latest flash

[flexcoders] Memory issues ... garbage collection only running in IE (not FF or Safari)

2008-10-28 Thread e_baggg
So I have an app in production which after 10 minutes of usage began to perform EXTREMELY slow, and users had to restart the app. (Flex 3) Windows and Mac...all browsers. I did some Profiling and did not get far. Whenever I take a Memory Snapshot, gc() is forced and all my objects are

RE: [flexcoders] AIR write file - prepended with irregular character

2008-10-28 Thread Jim Hayes
I was almost certainly wrong about the BOM thing. The docs say : writeUTF () method public function writeUTF(value:String):void Writes a UTF-8 string to the file stream, byte stream, or byte array. The length of the UTF-8 string in bytes is written first, as a 16-bit integer, followed by

Re: [flexcoders] Daily WTF... Property top not found on mx.containers.HBox and there is no default value.

2008-10-28 Thread Ralf Bokelberg
top is not a property, it is a style. The solution is to use setStyle instead of setProperty Ralf. On Tue, Oct 28, 2008 at 10:34 PM, Adrian Williams [EMAIL PROTECTED] wrote: All, Ok, so this is a bit infuriating...how is it that this is choking on my setting a top property from within a

  1   2   >