Re: [flexcoders] HttpRequest and HttpSession access in Remote Obj ect

2005-05-05 Thread Brett Palmer
I think Pradeep's question is the same as mine. Is there a method in Flex to gain access to the webcontainers session information? We need this because we have a lot of existing server side code that uses a session object to determine login status, user rights, etc. We also use sessions to help

RE: [flexcoders] Info ColumnChart

2005-05-05 Thread Matt Chotin
I think you’re going to have to go through the array and combine similar code items yourself.  The column chart will create one bar for every item in the array, so you need to make sure that there is only one array entry for each code item.   From: flexcoders@yahoogroups.com [ma

RE: [flexcoders] Performance question relating to array element r eferencing

2005-05-05 Thread Matt Chotin
I don’t believe there’s a real difference between the integer version and the short text version, but I believe the short text will be faster than the long text.  I don’t have any performance numbers to prove how much or if I’m even right, sorry.   Matt   From: flexcoders@yaho

RE: [flexcoders] Re: how to read initialization properties?

2005-05-05 Thread Matt Chotin
You can’t bind into the wsdl property of WebService, it has to be set at compile-time which binding can’t do.  Sorry!   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sanjayd Sent: Thursday, May 05, 2005 1:17 PM To: flexcoders@yahoogroups.com Subject: [f

RE: [flexcoders] HttpRequest and HttpSession access in Remote Obj ect

2005-05-05 Thread Matt Chotin
Hmm, that seems odd considering we need a request to reach the RemoteObject.  You’re not spawning a thread are you?   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Pradeep Sent: Thursday, May 05, 2005 4:48 AM To: flexcoders@yahoogroups.com Subject: [fle

RE: [flexcoders] Problems with DestroyChild

2005-05-05 Thread Matt Chotin
I guess destroyChildAt is more reliable J   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeff Tapper Sent: Thursday, May 05, 2005 10:38 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Problems with DestroyChild   Well - I've come up wi

RE: [flexcoders] Help Needed - Removing Item from tileList

2005-05-05 Thread Matt Chotin
I would use the selectedIndices instead and call removeItemAt.  removeTreeNode is used for Trees.   Matt   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David Terry Sent: Thursday, May 05, 2005 8:30 AM To: flexcoders@yahoogroups.com Subject: [flexcode

RE: [flexcoders] Tile container?

2005-05-05 Thread Matt Chotin
It will basically lay out as many as it can horizontally before moving to the next row, and after that will use the same number in each row.  So if you make the Tile itself wider or narrower (setting width via percentage or pixels) you can affect the # of items in the row.   Matt  

RE: [flexcoders] variable naming convention oddity

2005-05-05 Thread Matt Chotin
Must be how our translator does variable name conversion.  We follow the JavaBeans style and I guess doing lots of caps in the first word messes things up?  I saw someone else pointing out in a different area how doing something with URL in the middle of the name (like setDebugURLString)

[flexcoders] Vertical Accordion?

2005-05-05 Thread nithya karthik
HAi,    Is there any possibility to have a vertical accordion in flex? anything like Rotate can be used to rotate the whole container? i came to know it is possible with laszlo..   thanks, nithya Yahoo! Messenger - Communicate instantly..."Ping" your friends today! Download Messenger Now

RE: [flexcoders] Re: Control Tree with a Button

2005-05-05 Thread Matt Chotin
myTree.dataProvider should provide you the root node of the Tree.  How were you populating the dataProvider where it wasn’t working?   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jwaknitz Sent: Thursday, May 05, 2005 9:33 AM To: flexcoders@yahoogroups

[flexcoders] Performance question relating to array element referencing

2005-05-05 Thread jgserrault
I am about to embark on building a component that will involve heavy usage of arrays, and before I write a benchmark routine to answer my question, I thought I would see if anyone already had the answer. My question is basic: When referencing array elements using the following approaches/meth

RE: [flexcoders] Tree Drag and Drop help

2005-05-05 Thread Tracy Spratt
Attached is a complete example. I just tested it and it seems to work fine. Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of pilby1 Sent: Thursday, May 05, 2005 7:04 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Tree Drag and Drop

RE: [flexcoders] Tree Drag and Drop help

2005-05-05 Thread Ashish Goyal
One correction.. 'treeItems' should be in quotes.    var items = event.dragSource.dataForFormat("treeItems");   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ashish GoyalSent: Thursday, May 05, 2005 4:28 PMTo: flexcoders@yahoogroups.comSubject: RE

[flexcoders] Re: CSSI Security Issues and Flex (Proof of concept exploit)

2005-05-05 Thread Eric Raymond
Semantics aside, flex applications tend to promote a type of interaction that the majority of flash applications (in general) do not. FYI, I mispoke hugely. The offending command is asfunction, not fscommand. Here is a sample exploit. It requires you to trick the user into clicking a "link".

RE: [flexcoders] Tree Drag and Drop help

2005-05-05 Thread Ashish Goyal
Try this code as a dragDrop event handler for the tree and let me know if it doesn't work.     function doDragDrop(event) {   doDragExit(event);   var items = event.dragSource.dataForFormat(treeItems);var dest = event.target;   var dropLoc = dest.getDropLocation();      dest.clea

[flexcoders] Re: CSSI Security Issues and Flex

2005-05-05 Thread Eric Raymond
Well filtering out "fscommand:" would be enough to avoid problems within Flex itself. I don't believe there is any way to make text active in flex other than through fscommand? Typically people rewrite < and > into the html entities (e.g., <), but that won't work for flex. Unlike html, it's hard

[flexcoders] Tree Drag and Drop help

2005-05-05 Thread pilby1
I've been wracking my brains on this for a while now, and it hasn't been a smooth ride. Instead of chanting my experiences in this forum, it all boils down to my pleading for help from any of you. Can anyone please provide me a code sample or a URL of such pertaining to drag-n-drop with a Tree

RE: [flexcoders] CSSI Security Issues and Flex

2005-05-05 Thread Matt Chotin
These are some good points, I’ve forwarded this on to our Product Security Team and they’re going to think about this a little more in terms of existing and future Flex components and will make recommendations as to how to lock them down.   Matt   From: flexcoders@yahoogroups.

RE: [flexcoders] web services suddenly stopped working!!

2005-05-05 Thread Peter Farland
Hmm, {context.root} should have been replaced at compile time by the context root.   Are you using mxmlc to compile this on the command line or are you browsing to the .mxml file? If you are using the command line, are you specifying a context root?     From: flexcoders@yahoogroups.com [

[flexcoders] web services suddenly stopped working!!

2005-05-05 Thread Steve Pruitt
I have a very inexplicable problem and I have exhausted everything I know to check, twiddle, verify, etc.  Perhaps someone can think of something else.  My application has a set of webservices that have been working for months.  I have not changed anything related to the deployment environ

Re: [flexcoders] SOAP into DataGrid headache :(

2005-05-05 Thread Manish Jethani
On 5/6/05, clogic_info <[EMAIL PROTECTED]> wrote: > (event.result)" resultFormat="xml"> ^^^ I think your main problem is that you're getting data as XML and you somehow need to convert it to an object. Check this thread out: http://www.mail-archive.com

Re: [flexcoders] Re: Cairngorm Result Question

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

[flexcoders] Re: Cairngorm Result Question

2005-05-05 Thread digital_eyezed
Cheers Steven, I thought a bug was to blame, but have pasted some code for a quick browse: My command class has this result method: public function onResult( event : Object ) : Void{ var getInboxViewHelper = ViewLocator.getInstance().getViewHelper ( "ControlView" ); getInboxViewHelper.fillInbox

RE: [flexcoders] Cairngorm Result Question

2005-05-05 Thread Steven Webster
Iain, You may want to consider not using the CairngormApplication tag so you can debug in Flexbuilder... In the meantime, can you post your onResult method in your command class, post the method on your view helper that you are calling, and show us how and where you are instantiating your DataGri

Re: [flexcoders] Clearing Canvas or tileList

2005-05-05 Thread Manish Jethani
On 5/6/05, David Terry <[EMAIL PROTECTED]> wrote: > How do I clear a tileList or Canvas? TileList.removeAll() Canvas.destroyAllChildren() Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an

Re: [flexcoders] Re: Filtering data in Flex

2005-05-05 Thread Manish Jethani
On 5/6/05, Lehman, Jason <[EMAIL PROTECTED]> wrote: > I downloaded your source and added 5 records to the xml. It repeats the > data from the datagrid when you scroll rather than picking up new data > from the source. it turns out there's a bug. FilteredDataProvider must also implement the getIt

[flexcoders] Re: how to read initialization properties?

2005-05-05 Thread sanjayd
This seems to work off & on ! I tried this: and it works fine. however, this does not work: wrote: > On 5/5/05, sanjayd <[EMAIL PROTECTED]> wrote: > > > Is there a formal/elegant way to read start-up properties via a > > java-style-properties-file/windows-style-ini-file/xml-config-type-file ?

[flexcoders] Re: Tree questions

2005-05-05 Thread sreejithunni
Manish, I am not sure if I got the right leads ... i did read the archive, especially http://www.mail-archive.com/flexcoders@yahoogroups.com/msg05181.html and it works well if I "know" the tree nodes! The problem I have is that the the first level does not have any leaf nodes on appInit. On nodeOp

[flexcoders] Re: SOAP into DataGrid headache :(

2005-05-05 Thread clogic_info
I know this one does'nt work but try and get it to work :/ i cant for the life of me. if you need username and pass i e-mail me please. Thanks in Advance! Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from

[flexcoders] Clearing Canvas or tileList

2005-05-05 Thread David Terry
Hi guys,   I have another question for everyone.   How do I clear a tileList or Canvas?   I have my canvas filled with image objects and the tileList is filled with the renderer objects.  Is there object.clear() method I can call?   Thanks again, ~David T. Yahoo! Gro

RE: [flexcoders] Re: Filtering data in Flex

2005-05-05 Thread Lehman, Jason
> On 5/6/05, Lehman, Jason <[EMAIL PROTECTED]> wrote: > > > I attempted to use the FilteredDataProvider that you've implemented, > > however, when the datagrid consists of more data rows than the rowcount > > defined it starts to repeat data from the beginning when scrolling. Any > > suggestions?

[flexcoders] SOAP into DataGrid headache :(

2005-05-05 Thread clogic_info
http://www.macromedia.com/2003/mxml"; themeColor="#8098AC"> http://www.sportsdatabases.com/clientservices/clientservices.as mx?wsdl" showBusyCursor="true" port="ContentServicesSoap"> {SOAPUserName} {SOAPPassword}

Re: [flexcoders] CSSI Security Issues and Flex

2005-05-05 Thread Manish Jethani
On 5/5/05, Eric Raymond <[EMAIL PROTECTED]> wrote: > Here's one way to resolve the issue. There are a handful of input > methods in Flex that allow arbitrary input. It would be a step in the > right direction if (by default) these text input methods would strip > out offending strings. Ideally

Re: [flexcoders] Tile container?

2005-05-05 Thread Manish Jethani
On 5/6/05, Robert Brueckmann <[EMAIL PROTECTED]> wrote: > I just thought the Tile Container > would have something like the tile list component that you could > indicate how many you wanted in a row. That sounds like a nice feature suggestion (and we need 'em). Thanks! Yahoo! Groups Links <

Re: [flexcoders] Re: Filtering data in Flex

2005-05-05 Thread Manish Jethani
On 5/6/05, Lehman, Jason <[EMAIL PROTECTED]> wrote: > I attempted to use the FilteredDataProvider that you've implemented, > however, when the datagrid consists of more data rows than the rowcount > defined it starts to repeat data from the beginning when scrolling. Any > suggestions? If your Fi

RE: [flexcoders] Tile container?

2005-05-05 Thread Robert Brueckmann
Thanks Manish...I was initially thinking of using the grid...guess I should have just went with that...I just thought the Tile Container would have something like the tile list component that you could indicate how many you wanted in a row. Thanks again for your help! Robert L. Brueckmann Senior

Re: [flexcoders] Problems with DestroyChild

2005-05-05 Thread Manish Jethani
On 5/5/05, Jeff Tapper <[EMAIL PROTECTED]> wrote: > panel.destroyChild(rowArray[i]); > panel.destroyChildAt(panel.getChildIndex(rowArray[i])); Do you need both of the above or only the second one? I'm surprised, because destroyChild() calls destroyChildAt() inte

RE: [flexcoders] Re: Filtering data in Flex

2005-05-05 Thread Lehman, Jason
Manish, I attempted to use the FilteredDataProvider that you've implemented, however, when the datagrid consists of more data rows than the rowcount defined it starts to repeat data from the beginning when scrolling. Any suggestions? - Jason > -Original Message- > From: flexcoders@yahoog

Re: [flexcoders] help enabling or disabling a control when a user selects something

2005-05-05 Thread Manish Jethani
On 5/5/05, cnewroth55 <[EMAIL PROTECTED]> wrote: > if (event.target.selectedIndices == "All Reports"){ > srcgrid.enabled = !srcgrid.enabled; > } I'm sorry if this is a stupid question as I haven't gone through your entire code line by line, but what does the above

Re: [flexcoders] Re: More Competition

2005-05-05 Thread John Dowdell
dunwerkin wrote: > My reason to not look at SnappMX (or Lazlo for that matter) is that > every XML based implementation for a UI seems to be creating its own > very different dialect. Not very good if you want to repurpose UI > later. If someone wrote a SWF generator that used either XUL > (Mozill

[flexcoders] Cairngorm Result Question

2005-05-05 Thread digital_eyezed
I have an application which upon initialisation triggered a remote object request which returned an Array of VO objects as a result. I assigned this result as the dataProvider to a dataGrid. No problem. Now I am redesigning into Cairngorm and am a bit stuck on how to deal with the result. I fo

Re: [flexcoders] Tile container?

2005-05-05 Thread Manish Jethani
On 5/5/05, Robert Brueckmann <[EMAIL PROTECTED]> wrote: > Is there a way to set how many items you want in a row for the tile > container to put...it seems it's default is 3 per row...any way to > change this? There doesn't seem to be anything in the API or in the > examples that come with Flex or

RE: [flexcoders] Tile container?

2005-05-05 Thread Robert Brueckmann
The TileList makes things selectable, like items in a list, at least those are the examples I see in the API docs but in the samples package that comes with the Flex installation, in the containers folder they show the use of a Tile container…I just want to display 8 radio buttons within a

[flexcoders] Alex Uhlmann: Rotation class help

2005-05-05 Thread Duccio
Hi, i'm currently using animationpackage. I have one little problem with the Rotation class, i'm using it to rotate an image but it rotates on its 0,0 axis (upper left corner) and not on its centre as i expected. I looked the documentation but didn't find anything regarding changing the ce

Re: [flexcoders] CSSI Security Issues and Flex

2005-05-05 Thread John Dowdell
The title may be a bit of a misnomer, because Macromedia Flex lives on the server, while cross-site scripting exploits would occur on the client machines. This seems a sub-class of general security in the Macromedia Flash Player rather than the development environment, true...? Here's general b

Re: [flexcoders] Tile container?

2005-05-05 Thread JesterXL
Why are you using Tile vs. TileList?   - Original Message - From: Robert Brueckmann To: flexcoders@yahoogroups.com Sent: Thursday, May 05, 2005 1:50 PM Subject: RE: [flexcoders] Tile container? Thanks David but I’m using the Tile container not the TileList…the tileList has a nic

RE: [flexcoders] Tile container?

2005-05-05 Thread Robert Brueckmann
Thanks David but I’m using the Tile container not the TileList…the tileList has a nice columnCount attribute…I just want to use the Tile container that displays items in equal sized cells and it seems to only allow for 3 items per row no matter what I do and the columnCount attribute, when

[flexcoders] help enabling or disabling a control when a user selects something

2005-05-05 Thread cnewroth55
What I am trying to do (with out much success) is to disable the one list container(srcgrid) if a person drags "All Reports" into the destination list container(destgrid), I have tried using selectedIndices with both the text and the value of zero as this is the index of "all reports" but it do

[flexcoders] CSSI Security Issues and Flex

2005-05-05 Thread Eric Raymond
Cross Site Scripting attacks are the bane of web based systems. Essentially an attacker takes advantage of the fact that some text they can enter contains code which is evaluated when someone else looks at the text. For example, a user enters text into a text input field on a web page. Later on

Re: [flexcoders] Problems with DestroyChild

2005-05-05 Thread Jeff Tapper
Well - I've come up with a functioning workaround, but its just plain odd. If I just destroy the child as I was, it wasnt working, but if i do both that and panel.destroyChildAt(panel.getChildIndex(rowArray[i])); suddenly it works. How very very odd. Seems like it requires a belt and suspender

RE: [flexcoders] Tile container?

2005-05-05 Thread David Terry
Robert,   If I understand your request correctly, you want to change the number of columns for the tileItem control?   You can change the ‘columnCount’ property to reflect the number needed.  IE: columnCount="1"   I hope that helps.   ~David T.   From: flexcoders@yahoogr

RE: [flexcoders] Cool Transition Effects

2005-05-05 Thread Alex Uhlmann
Hi Andy, while I think we still have to wait a bit when we can achieve runtime transition effects like this http://www.mailorderchickens.org/ ( ; ...we do have some options at the moment. We just posted about this topic: http://www.richinternetapps.com/archives/000108.html Best, Alex -- Alex

[flexcoders] Problems with DestroyChild

2005-05-05 Thread Jeff Tapper
Hey folks - I'm having a hard time getting rid of a pesky component. What should be a pretty straight forward operation is causing me no end of grief. Running this code Echo.info("child index:"+panel.getChildIndex(rowArray[i])); panel.destroyChild(rowArray[i]); Echo.info("child index:"+panel.ge

[flexcoders] Tile container?

2005-05-05 Thread Robert Brueckmann
Is there a way to set how many items you want in a row for the tile container to put...it seems it's default is 3 per row...any way to change this? There doesn't seem to be anything in the API or in the examples that come with Flex or in the APIs themselves...just figured there might be something

[flexcoders] Re: Control Tree with a Button

2005-05-05 Thread jwaknitz
Matt, how do I get at the dataProvider to use the methods? I tried adding the nodes to the dataProvider dynamically but that didn't work. Little more info would be helpful. Thanks. --- In flexcoders@yahoogroups.com, Matt Chotin <[EMAIL PROTECTED]> wrote: > Check out the TreeDataProvider API

[flexcoders] variable naming convention oddity

2005-05-05 Thread Robert Brueckmann
I just encountered something very bizarre. I have a java VO called DateSpans...it's a class that simply contains a whole set of variations of date spans available for a portfolio the user selects and I use this class to dynamically set the calendar component in my flex app. The DateSpans class

Re: [flexcoders] Help Needed - Removing Item from tileList

2005-05-05 Thread Manish Jethani
On 5/5/05, David Terry <[EMAIL PROTECTED]> wrote: > function doDragComplete(event) > > { > > var dragItems = > event.dragSource.dataForFormat("source").selectedItems; > > var counter = dragItems.length; > > for (var i=0;i > { > > var

[flexcoders] Re: Filtering data in Flex

2005-05-05 Thread Daniel Harfleet
Don't quote me on this ;-) but I believe its the Adapter Pattern (GOF) a java swing example is here: http://java.sun.com/docs/books/tutorial/uiswing/co mponents/table.html#sorting rgds dan --- In flexcoders@yahoogroups.com, "Alistair McLeod" <[EMAIL PROTECTED]> wrote: > Hi Ketan, > > As Steve

[flexcoders] Help Needed - Removing Item from tileList

2005-05-05 Thread David Terry
Hello,   I have another newbie question…   I am trying to remove an item from a tileList control after dropping the item onto a Canvas control.  I know something is not right, but where am I going wrong.   Many thanks, David T.     Code *  

Re: [flexcoders] Problem Displaying Data

2005-05-05 Thread Manish Jethani
On 5/5/05, clogic_info <[EMAIL PROTECTED]> wrote: > xmlns="http://www.sportsdatabases.com/ClientServices/ContentServices"; > > 25416 Boston > BOS 961 > 19 Detroit > DET 962 > 22 110.00 > 9.50 Yes > 05/05/2005 13:05:00 Your Game tag isn't closed. Anyway, I think it should be gameModel.Games.Gam

Re: [flexcoders] how to read initialization properties?

2005-05-05 Thread Manish Jethani
On 5/5/05, sanjayd <[EMAIL PROTECTED]> wrote: > Is there a formal/elegant way to read start-up properties via a > java-style-properties-file/windows-style-ini-file/xml-config-type-file ? XML, yes. You can store the configuration properties in an XML file on the server. See this file, cfg.xml:

[flexcoders] Problem Displaying Data

2005-05-05 Thread clogic_info
Warning: newb<--- I have seen issue posted before but could not seem to get anything to work, Basically I am using FAST to request a SOAP service and it targets "customerSummaryArray" for the reply, however when I try to display this in a datagrid, it shows nothing, but makes scrollbar. //The

[flexcoders] how to read initialization properties?

2005-05-05 Thread sanjayd
Hi. Is there a formal/elegant way to read start-up properties via a java-style-properties-file/windows-style-ini-file/xml-config-type-file ? Thanks - Sanjay Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from

Re: [flexcoders] crimson.jar & flex runtime

2005-05-05 Thread Joe Berkovitz
I will say (possibly irrelevantly) that I have seen xerces-based applications fail in the past when crimson.jar was placed in the CLASSPATH. I don't think they play nice together. [EMAIL PROTECTED] wrote: > Hi Peter, > > I checked the web.xml and the AMFGatewayServlet is loaded by a > Bootst

Re: [flexcoders] Tree questions

2005-05-05 Thread Manish Jethani
On 5/5/05, sreejithunni <[EMAIL PROTECTED]> wrote: > 1. How do you collapse an entire tree to display only the first or > second level in the hierarchy! > > 2. If I know the path to the nth level node in a hierarchy (for > example L1>L2>L3), is it possible to recursively open the nodes L1, L2 > A

Re: [flexcoders] Re: More Competition

2005-05-05 Thread Darron J. Schall
dunwerkin wrote: >My reason to not look at SnappMX (or Lazlo for that matter) is that >every XML based implementation for a UI seems to be creating its own >very different dialect. Not very good if you want to repurpose UI >later. If someone wrote a SWF generator that used either XUL >(Mozilla's

[flexcoders] Re: More Competition

2005-05-05 Thread dunwerkin
Andy, I haven't used the SnappMX product, but I imagine that you can use one of the OpenSource implementations of the AMF gateway: AMFPHP (php), OpenAMF (Java), and I seem to recall seeing a .net version too once. There's a python alpha, and the format is somewhat documented by these OSS effort

RE: [flexcoders] crimson.jar & flex runtime

2005-05-05 Thread laura . donia
Hi Peter,   I checked the web.xml and the AMFGatewayServlet is loaded by a BootstrapServlet.   Regarding sending XML over RemoteObject: No, we are not directly sending XML over the RemoteObject. We are using the RemoteObject to just call java methods on the app server. My concern was that I didn

RE: [flexcoders] Re: Filtering data in Flex

2005-05-05 Thread Alistair McLeod
Hi Ketan, As Steven said, you should create a FilteredDataProvider that implements the DataProvider interface and does the filtering for you - your TileList then takes that as its dataprovider and when filtering occurs, the TileList will updates its view of the data. Here's the one Manish wrote:

Re: [flexcoders] Re: Filtering data in Flex

2005-05-05 Thread Ketan Bengali
Setting the height/width to 0 doesn't make any difference. We wont to delete the items not satisfying the filter criteria. In other words update the TileList component with the data. Regards, Ketan Bengali joao_m_fernandes wrote: >Ketan, > >Did you try to set Height and Width to 0? >For t

[flexcoders] Cairngorm 0.99 - coming soon !

2005-05-05 Thread Steven Webster
All,   I think an update on Cairngorm 0.99 is in order the summary and the good news is that we are almost there for you.   The team at iteration::two have been very much heads down; you may have seen the blog entry we made about releasing a significant Flex application to one of th

[flexcoders] Re: Filtering data in Flex

2005-05-05 Thread joao_m_fernandes
Ketan, Did you try to set Height and Width to 0? For the datagrid it should be easy, setting a new dg dataProvider with only the new Items. João Fernandes --- In flexcoders@yahoogroups.com, Ketan Bengali <[EMAIL PROTECTED]> wrote: > Yes, we did had a look at FlexStore before posting this query

Re: [flexcoders] Filtering data in Flex

2005-05-05 Thread Ketan Bengali
Yes, we did had a look at FlexStore before posting this query. It doesn't fulfill our need as it just fades away the items and it leaves the item spaces empty if we try to make these items invisible by specifying /visible=false/. Our requirement is bit different, we need to show only items fulfill

RE: [flexcoders] Filtering data in Flex

2005-05-05 Thread Steven Webster
Ketan, > As we can filter data using DataSet component in Flash, is > there any way in Flex to do so? > > I want to avoid server trip as I'm getting the whole data in > one go and depending upon the users response I just need to > hide some records from the pre-fetched data displayed in the

[flexcoders] Filtering data in Flex

2005-05-05 Thread Ketan Bengali
Hello, As we can filter data using DataSet component in Flash, is there any way in Flex to do so? I want to avoid server trip as I'm getting the whole data in one go and depending upon the users response I just need to hide some records from the pre-fetched data displayed in the TileList. ex

[flexcoders] ColumnChart picture

2005-05-05 Thread [EMAIL PROTECTED]
Hi it's possibile about you display a picture into dataTipFunction? This is my code, but don't work. Devis function Foto_Obj(obj) { tot.title=""; return ""; } Yahoo! Groups Links <*> To visit your group on the web, go to: http://grou

RE: [flexcoders] constructor properties

2005-05-05 Thread Alistair McLeod
Hi Duccio,   Have a look at the commitProperties method which is called by the Flex component framework - override that method, and make sure you call super.commitProperties().   Cheers,   Ali   -- Alistair McLeodDevelopment Director iteration::two[EMAIL PROTECTED]   Office:  +44 (0)131

[flexcoders] Tree questions

2005-05-05 Thread sreejithunni
I have 2 questions that I need guidance on. 1. How do you collapse an entire tree to display only the first or second level in the hierarchy! 2. If I know the path to the nth level node in a hierarchy (for example L1>L2>L3), is it possible to recursively open the nodes L1, L2 AND L3 by firing a s

[flexcoders] CMM Level 5 Company (C#,ASP.NET/J2EE/Datawarehousing)3-10yrs BANGALORE/CHENNAI/H

2005-05-05 Thread ap_subhasree
Hi All, We are a Leading Resource Consultant catering to various MNCs in India and Abroad. We are looking for Our World's Largest PCMM Level 5 Client in Bangalore,Chennai,Hyderbad REQUIREMENT I : Developers/Senior Developers Skills: *Experience in .Net (C#, ASP .Net, Windows Based).

[flexcoders] CMM Level 5 Company (C#,ASP.NET/J2EE/Datawarehousing)3-10yrs BANGALORE/CHENNAI/H

2005-05-05 Thread ap_subhasree
Hi All, We are a Leading Resource Consultant catering to various MNCs in India and Abroad. We are looking for Our World's Largest PCMM Level 5 Client in Bangalore,Chennai,Hyderbad REQUIREMENT I : Developers/Senior Developers Skills: *Experience in .Net (C#, ASP .Net, Windows Based).

[flexcoders] CMM Level 5 Company (C#,ASP.NET/J2EE/Datawarehousing)3-10yrs BANGALORE/CHENNAI/H

2005-05-05 Thread ap_subhasree
Hi All, We are a Leading Resource Consultant catering to various MNCs in India and Abroad. We are looking for Our World's Largest PCMM Level 5 Client in Bangalore,Chennai,Hyderbad REQUIREMENT I : Developers/Senior Developers Skills: *Experience in .Net (C#, ASP .Net, Windows Based).

[flexcoders] constructor properties

2005-05-05 Thread Duccio
I have a custom component that extends from mx.controls.Image. I'd like to set some properties before the class executes its init() method. Can i use my class constructor to pass some values to my class? I tried this but i just can't pass values to constructor (undefined):  import mx.contr

Re: [flexcoders] Info ColumnChart

2005-05-05 Thread [EMAIL PROTECTED]
Hi , i have seen the good tutorial Christophe's Chart Explorer. But my i wish to understand this, I have a RemoteObject that return me an array of "CVenditaVO", this object is not gathered for "code item" and every "code item" has a qty, or rather i wish display in my columnchart all my "code ite

[flexcoders] Re: Datagrid cellEditor focus problem

2005-05-05 Thread bhaq1972
Thanks Jim that worked regards Bod (bhaq1972) --- In flexcoders@yahoogroups.com, Jim Laing <[EMAIL PROTECTED]> wrote: > I added a "dg.disposeEditor();" line before setting the focused cell > to the old cell when not changing the focus. This seems to make it > work Alternatively, you could