[flexcoders] ViewStack Problem

2009-02-10 Thread akn_carnage
Hi everyone, I am creating a viewstack dynamically in actionscript and adding a large number of components to each view. When i try generating a pdf of each child in a viewstack i am getting an exception but if i acess each child through the UI and then generate the pdf it works. I understand

Re: [flexcoders]Thoughts on the Flex Community Feedback meeting

2009-02-10 Thread Tom Chiverton
On Friday 06 Feb 2009, dorkie dork from dorktown wrote: after that but that is NOT THE CASE. Bugs are NEVER getting fixed. Listen, bugs HAVE to get fixed! In my software and my projects if I have a bug I fix it! I don't close it, I'm not going to debate about if I should fix it, I don't have

[flexcoders] Re: AlivePdf and scroll bars

2009-02-10 Thread akn_carnage
Hi, Just add a container like a vbox around your list and then set the scrollpoluicy to off for the list and on or auto for the container. This will cause the scrollbar to appear for the container instead of the list and you can capture the entire image of the list without the scrollbar. Anil

[flexcoders] Re: tilelist HighlightIndicator effects

2009-02-10 Thread stinasius
hi where can i find ListBase.as?

Re: [flexcoders] Re: tilelist HighlightIndicator effects

2009-02-10 Thread Fotis Chatzinikos
svn, online svn, somewhere on your harddrive if you have the sdk source google for online flex 3 svn or something similar On Tue, Feb 10, 2009 at 12:39 PM, stinasius stinas...@yahoo.com wrote: hi where can i find ListBase.as? -- Fotis Chatzinikos, Ph.D. Founder, Phinnovation

[flexcoders] Re: tilelist HighlightIndicator effects

2009-02-10 Thread stinasius
i have seen a nice example on how to change hightlight indicator's alpha to 50% and adds a fade-in effect using Tweener: used it but i get this error 1120: access to undefined property tweener. here is my code import flash.display.Graphics; import flash.display.Sprite; import

Re: [flexcoders] Re: tilelist HighlightIndicator effects

2009-02-10 Thread Fotis Chatzinikos
missing tweener class / library? On Tue, Feb 10, 2009 at 1:18 PM, stinasius stinas...@yahoo.com wrote: i have seen a nice example on how to change hightlight indicator's alpha to 50% and adds a fade-in effect using Tweener: used it but i get this error 1120: access to undefined property

[flexcoders] Drag Drop controls query

2009-02-10 Thread abhishekchess1
hello frnds, I'm going to create a mockup creater in air, in that i'm showing many controls(button,text,etc) to users and allow him to drag drop it in main canvas, and allow him to resize and edit title or text. same like this url http://balsamiq.com/products/mockups Could u guide me how can be

[flexcoders] And survey says: private VS protected VS namespace

2009-02-10 Thread Yves Riel
I'm sure that a lot of us have tried over the years to extend some Flex controls. We all have soon realized that a lot of important methods are private and that if we want to tweak something, we have to copy these private functions into our derived class. Fortunately, there is the mx_internal

[flexcoders] Re: tilelist HighlightIndicator effects

2009-02-10 Thread stinasius
ok i have gotten it to work, small problem though, the clear function gives me error, as in when i rollout i would like to apply a same effect except this time the alpha is 0. here is my code so far. the error i get is 1020: method marked override must override another method override protected

[flexcoders] XML attributes

2009-02-10 Thread mihksoft
Hi! I have an XML var m_xml:XML = note/note; I want to add the attribute final-note to this XML to result note final-note=8/note. I didn't find how to add attributes like this. I tried m_x...@final-note = 8 but is not working. Any idea? Thanks, Mihai

[flexcoders] Split,inset and filter

2009-02-10 Thread Dieyana Abu Bakar
hye all...i really need ur help... i'm new beginner on flex..i hope somebody willing to help me.. 1.i want to split this data: 123 Street of 'Maya' into 3 columns   2.then i want to store the no.of the street,in this case;123 intolocal database.FYI i have created the local database using

[flexcoders] Re: Mouse click drop

2009-02-10 Thread smitade
Ok - let me provide some code. First define one of many images. That's what ChessPiece is. ns:ChessPiece id=img_bqr x={Number(ary.getItemAt(0))} y={Number(ary.getItemAt(0))} source={png_br} color=black rank=rook pos=a8 mouseDown=movePiece(event)/ Then in the movePiece function create the event

[flexcoders] get the result of a java method in flex

2009-02-10 Thread amazoonea
+--+ + English message: + +--+ hello, excuse my english but i'm french. i have a java method provided by an ejb session. i want to get the result of this method in flex the java method: public ListString getImage(){ //- return a String

Re: [flexcoders] DataGrid selectAll problem

2009-02-10 Thread Kapilmuni
Hi , Please help me for default SelectAll in CheckBox in DataGrid Kapilmuni wrote: Hi Can somebody help me to provide default selecall option in check box data grid Thanks kapil -- View this message in context:

Re: [flexcoders] ViewStack Problem

2009-02-10 Thread Jeffry Houser
I was going to suggest that creationPolicy is exactly what you need to pre-render all the ViewStack views. However, I'm not sure how creating the views on the fly will affect that, though. What are you using to generate the PDFs? akn_carnage wrote: Hi everyone, I am creating a viewstack

[flexcoders] how to localize pageTitle

2009-02-10 Thread Gautam P
Hi, Following is the code I tried out: mx:Application pageTitle={resourceManager.getString('AppMessages', 'GREETING')} xmlns:mx=http://www.adobe.com/2006/mxml; mx:Metadata [ResourceBundle(AppMessages)] /mx:Metadata I am not able to localize the application's pageTitle property

[flexcoders] Re: [SebCoverFlow] Enablinghand cursor when user mouse overs an item/picture?

2009-02-10 Thread valdhor
That's about as far as I got due to time constraints. I don't really understand what's happening at that point. If I were to guess I would say that there is a mask over the image at different points and that is stopping the mouseover effect. Maybe some judicious use of CSS could help. Good Luck.

[flexcoders] Re: Mapping complex objects to custom components with data binding?

2009-02-10 Thread Keith Hughitt
In case this helps anyone else, here is a fairly simple way to solve this problem: main.xml ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; xmlns:custom=custom.* mx:Script ![CDATA[ import mx.controls.Alert; public function

Re: [flexcoders] Re: Mapping complex objects to custom components with data binding?

2009-02-10 Thread Fotis Chatzinikos
Object is not bindable i think. Why do not you make a custom class and bind on this? ie: [Bindable] Myclass var a:whateverneeded var b:... and then you update the class instance as usuall and bind on its members On Tue, Feb 10, 2009 at 4:33 PM, Keith Hughitt keith.hugh...@gmail.comwrote:

Re: [flexcoders] get the result of a java method in flex

2009-02-10 Thread Fotis Chatzinikos
maybe last result contains the array collection? Have not used granite, but if the combobox shows values, its data provider is an arraycollection, so what you are looking for is in: imageManager.getImage.lastResult as arrayCollection and not in imageManager.getImage 2009/2/10 amazoonea

[flexcoders] Re: FB3 Pro can't find ColumnChart

2009-02-10 Thread valdhor
You need to set your project up to use the SWC's. I found these instructions on a web site somewhere but can't find it at the moment. From memory: Right Click on your project and select properties. Click Flex Build Path Select the Library Path tab Click Add SWC button Click the browse button and

Re: [flexcoders] Re: AdobeFlexBuilder 3 AIR: problem with Exported Release Build

2009-02-10 Thread Tom Chiverton
On Monday 09 Feb 2009, dmkramerica wrote: If you have .png files in a folder called assets, for some strange reason it will not install. I have not found a really good explanation, but working = good. Is it #FB-11712 ? -- Tom Chiverton Helping to enthusiastically utilize turn-key error-free

[flexcoders] Re: looping through xml (newbie question)

2009-02-10 Thread annelie2008
Thanks for this, I ended up stripping out the namespaces instead as I don't need them (and I couldn't actually make it work), but it's a big help to know it was the namespaces creating the problem and if I do need them in the future I know what I need to read up on. Thanks! Annelie --- In

Re: [flexcoders] AlivePdf and scroll bars

2009-02-10 Thread Gustavo Duenas LRS
I did use alive pdf one time and you are right, you have to set to the alive pdf the dimensions of the field you need printed in pdf otherwise it would be cut. let me know if you need more and I'll send you the values I've been using. Gustavo On Feb 9, 2009, at 5:47 PM, Richard Rodseth

[flexcoders] Logic in dataProvider

2009-02-10 Thread sandi.pond
Hello all, I'm new to Flex and so full of questions ... Is there a way to use logic to determine a dataProvider for a list? By that I mean, I have 2 attributes in my XML nodes and one will always contain a value and the other will always not. For example, node this= that / And my XMLList may

[flexcoders] flex app making undefined http requests

2009-02-10 Thread Michael Pelz-Sherman
My flex app is making http requests to a url with the string undefined. These requests are showing up as 404 errors in the web browser. I have no idea where these requests are coming from. Any suggestions on how to debug this? Thanks! - Michael

[flexcoders] fade effect not fading all items in a container

2009-02-10 Thread djepyon
Like the title says, I've got a container full of children that I'm setting the showEffect to a FadeEffect and it fades some of the children but not all. Specifically the things that don't fade seem to be buttons. Are there any reasons why things would not fade properly?

[flexcoders] Traffic Light Component

2009-02-10 Thread jeffreyr6915
I was wondering if someone could point me in the direction of a tutorial of traffic light component built in flex. If the tutorial is not available, can someone please point me to an example and source code? I'd like to be able to flash either red, yellow, or green glowing light inside of the

Re: [flexcoders] fade effect not fading all items in a container

2009-02-10 Thread Fotis Chatzinikos
Do you mean the text in the buttons? Fade effects work with embeded fonts only. I think that are other ways to do it, but can not remember at the moment (something about layer mode?) Search the archives for fading text On Tue, Feb 10, 2009 at 6:46 PM, djepyon i...@auricom.com wrote: Like

[flexcoders] Re: flex app making undefined http requests

2009-02-10 Thread valdhor
Try using Charles (http://www.charlesproxy.com) to figure out where they are coming from and what they are trying to do. It may be a request for a crossdomain.xml file. HTH Steve --- In flexcoders@yahoogroups.com, Michael Pelz-Sherman mpelzsher...@... wrote: My flex app is making http

Re: [flexcoders] Traffic Light Component

2009-02-10 Thread Nate Beck
That seems like a very specific implementation. However, I was able to find this. http://livedocs.adobe.com/flex/3/html/help.html?content=Filtering_Visual_Objects_15.html Should help get you started. On Tue, Feb 10, 2009 at 8:50 AM, jeffreyr6915 jrwalk...@gmail.com wrote: I was wondering

RE: [flexcoders] XML attributes

2009-02-10 Thread Ryan Graham
It doesn't like the final keyword in there I believe. When you need to add attributes or properties that use actionscript keywords, drop back to string keys for access: m_xml[@final-note] = 8; HTH, Ryan From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of

Re: [flexcoders] how to localize pageTitle

2009-02-10 Thread Haykel BEN JEMIA
If I'm right, the pageTitle property is set during compilation in the html wrapper and it has no effect when set on runtime. You will have to use JavaScript for this. Override the resourcesChanged() method and call a JavaScript function which will set the window's title. Here you will find an

[flexcoders] Check out my Facebook profile

2009-02-10 Thread Sreejith P Nair
Hi Flexcoders, I set up a Facebook profile where I can post my pictures, videos and events and I want to add you as a friend so you can see it. First, you need to join Facebook! Once you join, you can also create your own profile. Thanks, Sreejith To sign up for Facebook, follow the link

Re: [flexcoders] Check out my Facebook profile

2009-02-10 Thread Nate Beck
Facebook What's that? ;) On Tue, Feb 10, 2009 at 9:07 AM, Sreejith P Nair sreejith@gmail.comwrote: facebook Check out my Facebook profile Hi Flexcoders, I set up a Facebook profile where I can post my pictures, videos and events and I want to add you as a friend so you can

RE: [flexcoders] how to localize pageTitle

2009-02-10 Thread Ryan Graham
You may also be able to use BrowserManager depending on your setup… HTH, Ryan From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Haykel BEN JEMIA Sent: Tuesday, February 10, 2009 9:59 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] how to

[flexcoders] Another itemRenderer question, a simple one

2009-02-10 Thread djhatrick
Is there a way to access the styleName property of the list through the itemRenderer? thanks, Patrick

[flexcoders] Shared Object - Value Object - How use RegisterClassAlias?

2009-02-10 Thread thelordsince1984
hi everybody, i've created a custom value object class..a simple class with private properties and getters methods to retrieve them. then i created an array collection where each item is a value object. then i have a shared object manager that looks like this: package util{ import

[flexcoders] Can I debug my Flex applications on 64 bit windows?

2009-02-10 Thread Todd
Hello All, I'm trying to get my Flex Builder to debug, but I keep getting a variety of errors: I've installed both debug versions of flashplayer_10_plugin_debug, and flashplayer_10_ActiveX: I keep getting the following error: C:\Windows\SysWOW64\Macromed\Flash\Flash10a.ocx Flex Builder

RE: [flexcoders] Can I debug my Flex applications on 64 bit windows?

2009-02-10 Thread Ryan Graham
Did you change your compiler options to target FP10? HTH, Ryan From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Todd Sent: Tuesday, February 10, 2009 10:27 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Can I debug my Flex applications on 64 bit

[flexcoders] Re: Shared Object - Value Object - How use RegisterClassAlias?

2009-02-10 Thread djepyon
Registering the VO with flash.net.registerClassAlias should be all you need to do. import flash.net.registerClassAlias import com.myproject.vo.myVO registerClassAlias(com.myproject.vo.myVO,myVO); --- In flexcoders@yahoogroups.com, thelordsince1984 lore...@... wrote: hi everybody, i've

[flexcoders] Re: Can I debug my Flex applications on 64 bit windows?

2009-02-10 Thread Todd
No, I didn't change my target for FP 10. However, I jsut figured it out. I have to use Internet Explorer 32 bit version to run the Flash Player Debugger. So to get this working in Eclipse: 1) Go to Windows-Preferences-General-Web Browser 2) Add a new External Web Browser 3) Make it point at:

[flexcoders] ArrayCollection DataProvider question.

2009-02-10 Thread sailorsea21
I loaded the following xml as an ArrayCollection. data result id=1 datetoday/date yes13154/yes no654321/no /result result id=1 dateyesterday/date yes21354/yes no5468432/no /result result id=2 datetoday/date yes2665/yes

[flexcoders] Re: Shared Object - Value Object - How use RegisterClassAlias?

2009-02-10 Thread thelordsince1984
--- In flexcoders@yahoogroups.com, djepyon i...@... wrote: Registering the VO with flash.net.registerClassAlias should be all you need to do. import flash.net.registerClassAlias import com.myproject.vo.myVO registerClassAlias(com.myproject.vo.myVO,myVO); --- In

Re: [flexcoders] Another itemRenderer question, a simple one

2009-02-10 Thread Thibaud Van Vreckem
import mx.controls.listClasses.*; ListBase(owner).styleName On Tue, Feb 10, 2009 at 6:21 PM, djhatrick djhatr...@yahoo.com wrote: Is there a way to access the styleName property of the list through the itemRenderer? thanks, Patrick

[flexcoders] Attach camera stream to byteArray

2009-02-10 Thread Deniz Davutoglu
Hi Guys, Does it possible to attach video stream from camera to byteArray just like attaching it to net connection? Thanks Deniz

Re: [flexcoders] ArrayCollection DataProvider question.

2009-02-10 Thread Henrique
Humm, you have to make a filterFunction, like this: private function filterFucntion(item:Object):Boolean { return item.id == 1; } Henrique F. Marino blog.dclick.com.br www.dclick.com.br On Tue, Feb 10, 2009 at 3:35 PM, sailorsea21 sailorse...@yahoo.com wrote: I loaded the following xml as

[flexcoders] Re: Shared Object - Value Object - How use RegisterClassAlias?

2009-02-10 Thread djepyon
Just make sure you register it before you make any LocalConnection calls. It could be on application init or if you have a bridge class housing the LocalConnection functionality register them in its constructor. --- In flexcoders@yahoogroups.com, thelordsince1984 lore...@... wrote: --- In

RE: [flexcoders] Re: tilelist HighlightIndicator effects

2009-02-10 Thread Alex Harui
You have the wrong parameter list for clearHighlightIndicator Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of stinasius Sent: Tuesday, February 10, 2009

RE: [flexcoders] Re: Memory consumption by the browser

2009-02-10 Thread Alex Harui
One workaround would be to implement the panel in actionscript using custom layout and positioning logic, thereby avoiding constraints. That would prove that those aspects of the popup are causing the problem. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog:

RE: [flexcoders] ViewStack Problem

2009-02-10 Thread Alex Harui
Creationpolicy all should work. Post the stacktrace of the error and related code. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of akn_carnage Sent:

RE: [flexcoders] Re: embedded font causes labels to appear with backgroundColor lighter than expected

2009-02-10 Thread Alex Harui
I don't have Lucida Bright, but I used Lucida Sans and don't see any problems. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of hr1ny Sent: Monday, February

[flexcoders] Flex End-User Documentation Tools

2009-02-10 Thread dthomp325
Are there any tools available for creating in-application end-user documentation?

[flexcoders] Re: tilelist HighlightIndicator effects

2009-02-10 Thread Amy
--- In flexcoders@yahoogroups.com, stinasius stinas...@... wrote: hi where can i find ListBase.as? Click on your TileList MXML tag or the TileList import statement if you used as. Press F3. Now look for TileList extends ListBase in the class. Click ListBase. Press F3. HTH; Amy

[flexcoders] Thanks again to Adobe

2009-02-10 Thread Gregor Kiddie
...for the chance to contribute at the Open Iteration meeting! One question though, what happened to using the Google Moderator site for questions? Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ

[flexcoders] Re: Shared Object - Value Object - How use RegisterClassAlias?

2009-02-10 Thread thelordsince1984
--- In flexcoders@yahoogroups.com, djepyon i...@... wrote: Just make sure you register it before you make any LocalConnection calls. It could be on application init or if you have a bridge class housing the LocalConnection functionality register them in its constructor. --- In

Re: [flexcoders] Thanks again to Adobe

2009-02-10 Thread Matt Chotin
Well, no one had posted the last time we had checked, looks like you have 2 questions in there now. But they were mostly answered right? On 2/10/09 12:23 PM, Gregor Kiddie gkid...@inpses.co.uk wrote: ...for the chance to contribute at the Open Iteration meeting! One question though, what

[flexcoders] How to set the endpoint address in Coldfusion side?

2009-02-10 Thread markflex2007
Hi I am doing an AIR application and the coldfusion server in a network pc(192.168.0.181).the application need use CFML functions I need use mx:RemoteObject in the Air code and I have to pass endpoint attribute to mx:RemoteObject. My question is how to set the endpoint in coldfusion 8

RE: [flexcoders] Logic in dataProvider

2009-02-10 Thread Tracy Spratt
Yes, you use an e4x expression to return an XMLList. A common issue with attributes is that the @attrName syntax will error if ALL of the nodes do not have that attribute. Instead use attribute(attrName). So for your expression, it might be something like: var xlNodes:XMLList =

RE: [flexcoders] XML attributes

2009-02-10 Thread Tracy Spratt
I think it is the -. But either way, if you can't change the attribute name, then Ryan's approach is good. Tracy Spratt Lariat Services Flex development bandwidth available From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of

RE: [flexcoders] Thanks again to Adobe

2009-02-10 Thread Gregor Kiddie
Well not the ItemEditor one, I asked that in the chat as well but it got swallowed up in the rest of the chat about the Data Grid. Having the open chat for questions was ok this time, with less than half the number of the initial meeting, and a much more focused feel, there was less noise to wade

RE: [flexcoders] ArrayCollection DataProvider question.

2009-02-10 Thread Tracy Spratt
I suggest using e4x expressions against the XML, and then putting the result in an XMLListCollection. var xlResults:XMLList = xmlData.result.(attribute(id) == 1); trace(xlResults.toXMLString()); //to verify your data xlcResults = new XMLListCollection(xlResults); You did not say how you

[flexcoders] Re: How to set the endpoint address in Coldfusion side?

2009-02-10 Thread markflex2007
How to set up the endpoint in the server if I like the endpoint format look like following: http://192.168.0.181/myTestApp/messagebroker/amf Thanks Mark

RE: [flexcoders] XML attributes

2009-02-10 Thread Ryan Graham
Ah, good call Tracy... thanks for clearing that up. -Ryan From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Tracy Spratt Sent: Tuesday, February 10, 2009 2:13 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] XML attributes I think it is the

[flexcoders] Compiler improvements coming...

2009-02-10 Thread Gregor Kiddie
...seeing as Matt's reading the list today ;) I forgot to ask in the meeting. Are the compiler improvements in Flex 4 working with Flex 3? I.e. if I grab the compiler out of the nightlys now, can I use it against my current Flex 3 project? Gk. Gregor Kiddie Senior Developer INPS Tel:

[flexcoders] Re: Logic in dataProvider

2009-02-10 Thread Amy
--- In flexcoders@yahoogroups.com, sandi.pond sandi.p...@... wrote: Hello all, I'm new to Flex and so full of questions ... Is there a way to use logic to determine a dataProvider for a list? By that I mean, I have 2 attributes in my XML nodes and one will always contain a value and

[flexcoders] Re: How to implement right click drill down for either PieChart or ColumnChart

2009-02-10 Thread tungchau81
Any help out there? I am really stuck on this... --- In flexcoders@yahoogroups.com, tungchau81 tungcha...@... wrote: Hi, When a user **right-click on a wedge in a PieChart or a column in a ColumnChart control, I need to drill down into the data for that wedge or column and display new

[flexcoders] Re: fade effect not fading all items in a container

2009-02-10 Thread Amy
--- In flexcoders@yahoogroups.com, djepyon i...@... wrote: Like the title says, I've got a container full of children that I'm setting the showEffect to a FadeEffect and it fades some of the children but not all. Specifically the things that don't fade seem to be buttons. Are there any

[flexcoders] Re: Another itemRenderer question, a simple one

2009-02-10 Thread Amy
--- In flexcoders@yahoogroups.com, djhatrick djhatr...@... wrote: Is there a way to access the styleName property of the list through the itemRenderer? Unless you specifically prevent it, the List will assign its styleName to the itemRenderers. http://www.blogger.com/post-edit.g?

[flexcoders] Re: How to implement right click drill down for either PieChart or ColumnChart

2009-02-10 Thread tungchau81
I want to override the following function in ChartBase class, but it is private. I wonder if there is any other alternative solution. private function mouseClickHandler(event:MouseEvent):void Thanks in advance, Tung Chau --- In flexcoders@yahoogroups.com, tungchau81 tungcha...@... wrote:

[flexcoders] How to disable a checkbox in a Datagrid Column

2009-02-10 Thread b.kotireddy
Hi guys, I have a check box for each record in Datagrid Column. I used the itemRenderer to create checkbox. I want to disable that column or checkbox in that column when my user does not have permission to uncheck or check that checkbox. Please help me to do this. Thanks in advance koti

RE: [flexcoders] How to disable a checkbox in a Datagrid Column

2009-02-10 Thread Mark Easton
Well your itemrender can be coded as so: ?xml version=1.0 encoding=utf-8? mx:CheckBox xmlns:mx=http://www.adobe.com/2006/mxml; paddingLeft=10 mx:Script ![CDATA[ import mx.controls.DataGrid; import mx.events.DataGridEvent; import

Re: [flexcoders] How to disable a checkbox in a Datagrid Column

2009-02-10 Thread koti reddy
I have implemented like below.The below lines of code is my one of the column in datagrid. mx:DataGridColumn headerText=Print dataField=displayPrintFlag rendererIsEditor=true textAlign=center mx:itemRenderer mx:Component

Re: [flexcoders] Thanks again to Adobe

2009-02-10 Thread Matt Chotin
Ah, sorry, we must have missed that one. Your quesiton was: Just now, the majority of the functionality ItemEditor provides can be repeated by a ItemRenderer. With Gumbo giving better access to states, is it time to admit that Editing is just a state of the renderer? I believe the answer is

Re: [flexcoders] Check out my Facebook profile

2009-02-10 Thread Doug McCune
A septilian teraflops?! zoids! On Tue, Feb 10, 2009 at 4:21 PM, Kelly dek...@gmail.com wrote: It is a datamining operation sponsored and run by the American/Nazi Cocaine Importation Agency (CIA). The National Slavery Agency (NSA) is also heavily involved in the project

RE: [flexcoders] How to disable a checkbox in a Datagrid Column

2009-02-10 Thread Mark Easton
You will need to code it as I have ... I could be wrong though. -Original Message- From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com]on Behalf Of koti reddy Sent: Wednesday, 11 February 2009 12:42 p.m. To: flexcoders@yahoogroups.com Subject: Re: [flexcoders]

[flexcoders] Re: why don't create AdvancedDataGrid in new window

2009-02-10 Thread lehaianh1986
The bug is here: var newWindow:NativeWindow = new NativeWindow(options); The solution is instead of create a new NativeWindow, I create a new Window.

[flexcoders] Re: ViewStack Problem

2009-02-10 Thread Amy
--- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: Creationpolicy all should work. Post the stacktrace of the error and related code. Additionally, when I've recursively created Viewstacks and their children, I, well, er..._created_ the ViewStacks and the children. As in,

[flexcoders] Re: tilelist HighlightIndicator effects

2009-02-10 Thread stinasius
what is the right parameter to use here?

[flexcoders] Re: filter arraycollection with checkbox acting wired

2009-02-10 Thread johndoematrix
hi tried all that but no head way. in my data base i have a pizza column which is either yes or no(yes/no) now i have some entries as yes and some as no so that when someone checks the checkbox it shows those items that are yes in the database. i am following this example, the difference is that