Re: [flexcoders] Help with AdvancedDataGrid - Urgent

2009-09-04 Thread Adrian Williams
Hi Santosh, Check out GroupingCollection. Adrian Santosh Varghese wrote: Hi, I am new to Flex development. I wanted to use the AdvancedDataGrid to display data in a tree structure. coming from a remoteobject . The remote object is a java Collections object. I could read

[flexcoders] Manipulate y-axis of built-in tooltip?

2009-07-29 Thread Adrian Williams
Hi all, Quick question...is there a way to manipulate the y-axis position of a tooltip without using a custom tooltip? For example, I have an image that has uses the builtin tooltip and I need to have it display above the image. I have a series of images, side by side, in the bottom

Re: [flexcoders] Hi integration Flex Applicaitons with .NET Environment

2009-06-30 Thread Adrian Williams
Hi Satish, We have this exact configuration. Our front end (client-side) is served by our Flex apps, which interact with our database via our .net layer. There are packages out there that you can use (WebOrb is one) but we ended up simply setting up a web service on our .NET side and our

[flexcoders] Copy ToolTip to Clipboard

2009-06-18 Thread Adrian Williams
Hi all, I have a challenging little req't. We're using tooltips all over the place on our app. I need to be able to setup the tooltips so that we can have a copy button or text in the tooltip that our user can click to copy the contents of the tooltip to the system clipboard. This

Re: [flexcoders] Drag Drop - maually show red cross or green plus icon

2009-06-09 Thread Adrian Williams
Hi there... You need to take a look at this: DragManager.showFeedback(DragManager.MOVE); hth adrian bhaq1972 wrote: During a dragOver event I want to manually show the green plus or red cross icon on the dragProxy image. How do I do that? thanks

Re: [flexcoders] Flex and .NET

2009-06-08 Thread Adrian Williams
Hi there... We have a rather large RIA using C#.Net as the backend...and we have a large number of arrayCollections and dataGrids/advancedDataGrids We don't massage any of the data that we are passing with our web services...we literally pass as as it's created...i.e. as an Array

Re: [flexcoders] Re: DataGrid not releasing memory on removeAll()

2009-06-08 Thread Adrian Williams
Hi there, We had a similar problem albeit with the AdvancedDataGrid...it wouldn't release the custom renderers even after we told it to...in the end, we had to write a custom script that would track our renderers and when we wanted to GC things, we had to call the script to release the

Re: [flexcoders] Problem loading signed RSL

2009-06-05 Thread Adrian Williams
Hi Denis, If you've compiled using the RSL instead of merged code, you will need to locate the framework file (in your case: framework_3.2.03958.swf) on the computer used to compile and push that file to your web server along with your application swf's...when you use the RSL's and make

Re: [flexcoders] Links in Flex Data Grid Collumns

2009-05-29 Thread Adrian Williams
You need to take a look at setting up a custom item renderer for the dg column. As for an example, try searching flex datagrid itemRenderer to get a good start. in a nutshell, you create your itemRenderer as a separate component then reference that component in your DG column...such as:

Re: [flexcoders] Tree Structure in advanced data grid

2009-05-27 Thread Adrian Williams
take a look at adg.expandAll this will expand all the available nodes in your grouping collection. -adrian senthilkumarirtt wrote: hi all,I need to expand the tree structure (in advanced datagrid)automatically when application loaded Give some ideas to implement this... Thanks in

Re: [flexcoders] Display ADG Data Asynch (was: Advanced Datagrid performance)

2009-05-21 Thread Adrian Williams
Hi Valdhor, When you say set it to display async what do you mean? Adrian valdhor wrote: Thousands. It slows down a lot when you have grouping collections but I set it to display asynchronously so the user sees it updating. --- In flexcoders@yahoogroups.com

Re: [flexcoders] loading status for DataGrid

2009-05-12 Thread Adrian Williams
Hi, We just have a simple Loading Data clip the we setup in a swfLoader and we toggle the visibility on when we make our web service call to get our data, then after it's been returned, we toggle the visibility off. -adrian Dharmendra Chauhan wrote: Hi All, I have flex DataGrid which

[flexcoders] Flex Bug Fix Changelists Correlate to What?

2009-05-04 Thread Adrian Williams
Hi all, I've been keeping an eye on a couple bugs that we've opened with Adobe and see they have been fixed, but can't figure out what that translates to in terms of when we can get our hands on the fix and from where. For example we see: Fixed in changelist 227803 I can't seem to

Re: [flexcoders] Weblink to item in linkbar

2009-04-27 Thread Adrian Williams
Hi Paul, Read up on the navigateToURL() function. Syntax is along the lines of: url = http://www.google.com/;; navigateToURL(new URLRequest(url), _self); HTH, Adrian ptretter wrote: I have an item on my linkbar that says forum. I want to be able to click on this and

Re: [flexcoders] Re: Weblink to item in linkbar

2009-04-27 Thread Adrian Williams
Hi Paul, What is the component you are using that the user will click on to hit the link? I would imagine you can attach a simple onClick event to it that calls a short function for the navigateToURL... Adrian Paul Tretter wrote: Thanks Adrian, I actually couldn't get navigateToUrl to

Re: [flexcoders] Re: RegEx string via cell ItemRenderer to colorize specific characters or a better method?

2009-04-23 Thread Adrian Williams
, replacement:String ) : String { * return* source.split( find ).join( replacement ); } -TH --- In flexcoders@yahoogroups.com, Adrian Williams adri...@... wrote: Hi Tracy, This is an interesting idea...but you have me at a bit of a lossI was already heading down part of the same path you laid out

[flexcoders] RSL Linkage Error 1001 - Digest Mismatch? Umm....WHAT?

2009-04-22 Thread Adrian Williams
Hey Y'all, Ok, so I'm stumped... I update my FB SDK to 3.3 and now, when I run the compiled swf's, I get this error: Flex Error #1001: Digest mismatch with RSL http://localhost/GAP-Pages/framework_3.0.0.477.swf. Redeploy the matching RSL or relink your application with the matching

Re: [flexcoders] SOLVED (sort of) - RSL Linkage Error 1001 - Digest Mismatch? Umm....WHAT?

2009-04-22 Thread Adrian Williams
with the RSL's works again! WOOT! -aw Adrian Williams wrote: Hey Y'all, Ok, so I'm stumped... I update my FB SDK to 3.3 and now, when I run the compiled swf's, I get this error: Flex Error #1001: Digest mismatch with RSL http://localhost/GAP-Pages/framework_3.0.0.477.swf. Redeploy

[flexcoders] RegEx string via cell ItemRenderer to colorize specific characters or a better method?

2009-04-22 Thread Adrian Williams
Hi All, Here's a fun one! I have a column in an ADG, and the cells can contain a variety of data including: 16223T,16290T,16319A,16362C,16524G or 73G,249-,263G,290-,291-,309.1C,315.1C,489C,493G,522-,523- What I need to do is for each of the letters

Re: [flexcoders] Re: RegEx string via cell ItemRenderer to colorize specific characters or a better method?

2009-04-22 Thread Adrian Williams
ItemRenderer to colorize specific characters or a better method? Have a look into TextRange. --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com, Adrian Williams adri...@... wrote: Hi All, Here's a fun one! I have a column in an ADG, and the cells can contain

[flexcoders] Socket Timeout on Profiler....help?

2009-04-14 Thread Adrian Williams
Hi all, I've used the FB Profiler with success much in the past, though admittedly, I've had to shut off my windows firewall to avoid socket problems. However, I am having trouble getting it to run again. I had to update my flash player and SDK version to take advantage of a couple

Re: [flexcoders] error whenr .swf file tries to access variable like this Application.application.variableName

2009-04-09 Thread Adrian Williams
Hi Jigar, Have you made sure that the variable you are trying to access is set to public? Also, which app level does the variable exist in...the main app or the first-loaded swf? And if you are getting an error, can you post the stack here please? Adrian Jigar Kapadia wrote: I am

Re: [flexcoders] Ellipsis in Advanced datagrid(in flex)

2009-04-02 Thread Adrian Williams
Hey there, You'll want to use the truncateToFit property of the item renderer ClassFactory. var rendererFactory:ClassFactory; rendererFactory = new ClassFactory(Label); rendererFactory.properties = { truncateToFit: true, styleName: cellText }; column.itemRenderer =

Re: [flexcoders] truncateToFit in flex

2009-04-02 Thread Adrian Williams
Hi, I posted the answer in your last email about this...using ellipses in the ADG Adrian senthilkumarirtt wrote: hi,i want to know about use of truncateToFit in advanced datagrid.

Re: [flexcoders] Panel access

2009-04-02 Thread Adrian Williams
Hi Christophe, Try accessing the panel.enabled property. If the user is not logged in, set panel.enabled = false and they won't be able to interact with it. Adrian christophe_jacquelin wrote: Hello, I have a tab navigator with Panels. I want that the user access some panel only if

Re: [flexcoders] ADG Memory leak.

2009-04-01 Thread Adrian Williams
Tom Chiverton wrote: On Monday 23 Mar 2009, Adrian Williams wrote: a sieve. And as an experiment, we setup a custom renderer that simply returned .this and it leaked like crazy. We have a fairly large ADG (100+ columns) and every time we'd scroll right to see more columns, Could you attach

Re: [flexcoders] Rowcount in Advanceddatagrid

2009-03-30 Thread Adrian Williams
Hi Venkat, Would taking the adg.dataProvider.length work for you? Adrian venkat eswar wrote: How to get the actual row count of an advanceddatagrid with Open nodes and closed nodes

Re: [flexcoders] Add/remove columns dynamically to AdvancedDataGridColumnGroup

2009-03-30 Thread Adrian Williams
Joao, We faced a similar challenge (we have a report that the user can customize and persist which columns to display) and instead of actually removing the columns, we found it much simpler to manage the visibility instead...affecting the column.visible property. So when their report is

[flexcoders] ADG to .csv - Not finding any solutions out there

2009-03-24 Thread Adrian Williams
Hi All, I've been searching for a few hours and I'm coming up short...I'm not finding much info out there on ways to export the data contained in an ADG to a .csv format (for later import into Excel). I've seen several solutions for doing this with a standard DataGrid, but nothing for

Re: [flexcoders] ADG Memory leak.

2009-03-23 Thread Adrian Williams
Hi Wesley, We work with ADG's extensively including some intense custom renderers and have had horrible problems with memory leaks. Turns out, there are known problems with the ADG's internal renderers leaking like a sieve. And as an experiment, we setup a custom renderer that simply

Re: [flexcoders] calling a function from swf

2009-03-10 Thread Adrian Williams
This is pretty straightforward. We do a lot of this in our dashboard app where we have a function called registerSWF(). This helps us keep tabs on all the swf objects that are loaded on the dash. private var registeredSWF:ArrayCollection = new ArrayCollection(); public

Re: [flexcoders] hiding an applicationcontrolbar button

2009-03-06 Thread Adrian Williams
Hi Greg, does this not work for you? if (MyModel.getInstance().currentUser.useraccess == 99) { aHeadlines.visible = true; } else { aHeadlines.visible = false; } Greg Morphis wrote: I'm trying to hide or destroy a button that's showing in an ApplicationControlBar.

Re: [flexcoders] Recommended MVC for Flex/AS?

2009-03-05 Thread Adrian Williams
/2009/01/14/selecting-the-right-flex-application-framework/ On Tue, Mar 3, 2009 at 11:38 AM, Adrian Williams adri...@familytreedna.com mailto:adri...@familytreedna.com wrote: Hi All, I'm curious as to what our overall community would recommend, why and the pros/cons

Re: [flexcoders] Detecting other type of mouse event

2009-03-03 Thread Adrian Williams
Will listening for MOUSE_DOWN then MOUSE_MOVE then MOUSE_UP help? carlo giordano wrote: Is possible in the Flex Framework detecting the continuous press of mouse click like when we drag and drop a UIComponent ? And then detecting when the mouse is released ? I have not found anything in the

[flexcoders] Recommended MVC for Flex/AS?

2009-03-03 Thread Adrian Williams
Hi All, I'm curious as to what our overall community would recommend, why and the pros/cons of the various MVC's that are out there for Flex/AS. Thanks, Adrian

Re: [flexcoders] Passing parameter to swf

2009-03-02 Thread Adrian Williams
Hi Chandru, This is actually pretty easy...one the swfLoader.source, simply add the traditional ? and tabs to the source with the values you want to pass...then in your called swf, you access the passed values via the document.parameters.valueName i.e. Main App: var swf:SWFLoader =

Re: [flexcoders] SWF in a Panel

2009-02-27 Thread Adrian Williams
Hi Christophe, var swf:swfLoader = new swfLoader(); swf.source = //location of your swf file panel.addChild(swf); HTH, Adrain christophe_jacquelin wrote: Hello, How to draw an existing SWF file into a Panel ? Thank you, Christophe,

Re: [flexcoders] Dynamic Advanced Datagrid

2009-02-27 Thread Adrian Williams
Venkat, More details about what you want to do would help elicit a better response. Adrian venkat eswar wrote: How to do Dynamic tree inside advanced datagrid

Re: [flexcoders] Converting strings to numbers before sorting?

2009-02-26 Thread Adrian Williams
Hi Keith, Have you tried casting your string to a number via the number() function first? Number() handles floating points well. We have the same problem sorting kit numbers in true numerical fashion as we can have some that begin with a letter versus a true number. So in our sort

Re: [flexcoders] add tooltip in Line chart

2009-02-24 Thread Adrian Williams
Check out the dataTipFunction abilities. Adrian abhishekchess1 wrote: hello frnd, plz check theis code ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml http://www.adobe.com/2006/mxml layout=vertical verticalAlign=top horizontalAlign=center

[flexcoders] swfLoaded charts dataTips lose parent container boundaries -- WAS: 3.0.2 Upgrade Causes PieChart dataTipFunction placement to go haywire???

2009-02-24 Thread Adrian Williams
suspecting it is an Adobe bug. Best, Adrian Tom Chiverton wrote: On Monday 23 Feb 2009, Adrian Williams wrote: Notice that I've captured it when my cursor is over the Haplogroup Charts, mtDNA haplogroups, wedge H. These must be your own components, right ? Do you have a simple test case ? -- Tom

[flexcoders] Wicked Memory Leaks and Massive Loitering Objects

2009-02-20 Thread Adrian Williams
Hi all, My forehead is becoming flatter by the minute as I bang my head against the wall on this one In my dashboard application, I have a tab navigator with a canvas that defines each tab. A single tab/canvas has numerous panels and each panel has a swfloader swf file. When a

Re: [flexcoders] Is there any way to use predefined functions for a sortCompareFunction?

2009-02-17 Thread Adrian Williams
I don't think you can use the sortCompareFunction that way...it needs a function to process your data against. We use a number of customized sorting functions on a number of our fields via both sort.compareFunction as well as adg.sortCompareFunction, though funny enough, the compareFunction

Re: [flexcoders] How to reload a SWFLoader swf in place

2009-02-16 Thread Adrian Williams
Hi Gregor, This primary reason this isn't feasible is that a couple of the datasets are incredibly complex and immense, including some serious grouping collection work. We toyed with the idea of doing just what you suggested, but it would be a coding nightmare to force, for example, a

Re: [flexcoders] Re: Events and Child SWFs

2009-02-12 Thread Adrian Williams
Hi Wally, Looking at your question in blue, the simple solution is from your parent app, reference a function in your swf that will set the flag...remember it has to be public for the app to be able to reference it. (parent document) var childSWF:SWFLoader = new SWFLoader();

[flexcoders] How to reload a SWFLoader swf in place

2009-02-12 Thread Adrian Williams
Hi All, Have our dashboard application with numerous widgets (individual panels with a swf loaded with via a SWFLoader. We have a scenario (or six) where a user may change data in one widget that needs to be reflected in another widget. Short of making them completely reload the app

Re: [flexcoders] What comes out of a datagrid

2009-02-05 Thread Adrian Williams
Hi Wally, We have something that's practically identical to what you have described. For ours, instead of waiting until all the people have been dragged, we setup a number of listeners on our blank ADG (DRAG_START, DRAG_ENTER, DRAG_DROP) and as soon as the person is dropped, we reference

Re: [flexcoders] Re: Default sorting for Datagrid

2009-02-04 Thread Adrian Williams
We handle this in a couple different fashions...for data already in the grid, (albeit for an ADG vs. a DG), by setting up a custom sorter. var sorter:Sort = new Sort(); sorter.compareFunction = sortKitNums; sorter.fields = new Array();

[flexcoders] [Fwd: UPDATE: how to forcibly minimize a window via flexmdi window]

2009-02-02 Thread Adrian Williams
and act normally...but my window still defiantly sits un-minimizedsigh... Adrian Original Message Subject:how to forcibly minimize a window via flexmdi window Date: Mon, 02 Feb 2009 09:12:40 -0600 From: Adrian Williams adri...@familytreedna.com To: flexcoders

[flexcoders] how to forcibly minimize a window via flexmdi window

2009-02-02 Thread Adrian Williams
Hi gang, I've been toying with the outstanding flexmdi component from flexlib and have found something challenging... One of the pieces of the MDIWindow is the minimize() function. I'm creating the windows on the canvas dynamically based on the users last know settings...including

Re: [flexcoders] Re: DataGrid Drop Deny based on dropIndex

2009-01-29 Thread Adrian Williams
. Is there a method like DragManager.rejectDragDrop() so that when I'm dragging a row over all the rows, that it will reject certain rows, but accepts others? Thanks s.park --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com, Adrian Williams adri...@... wrote: Hi, We handle

Re: [flexcoders] adding components in alert control

2009-01-28 Thread Adrian Williams
The only way I have seen this possible is to use the PopUpManager. For our app, a user can delete a participant from their group (by dragging their ADG row to a trash can), but have to provide a reason why. So, we created a TitleWindow component that we pull in via the PopUpManager. Here's

Re: [flexcoders] DataGrid Drop Deny based on dropIndex

2009-01-27 Thread Adrian Williams
Hi, We handle something very similar to this, and although we don't deny a drop based on the index, we use the index to persist the drop location in the database...the same logic applies. We are using this on an ADG and hence my example below: You could grab the internal targetGrids

Re: [flexcoders] DataGrid Drop Deny based on dropIndex

2009-01-27 Thread Adrian Williams
development bandwidth available *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On Behalf Of *Adrian Williams *Sent:* Tuesday, January 27, 2009 4:33 PM *To:* flexcoders@yahoogroups.com *Subject:* Re

Re: [flexcoders] Re: AdvancedDataGrid group filtering openNode

2009-01-26 Thread Adrian Williams
Hi folks, We actually have the same need and including the things y'all have already tried, we even tried to cycle thru the open nodes and write their object to an array, then refreshed then tried to do an open nodes for each in the array without success Alex, et al...any input

Re: [flexcoders] SOLVED...Simply!!! Re: Passing variables from .swf to .swf

2009-01-22 Thread Adrian Williams
Hi All, First, thanks very much to all the great ideas that were thrown at me on this one...in the end, we were all very much over complicating this... Quite simply, from the dashboard, in each SWFLoader, I simply add a deeplink (probably not needed but...) with a simple name-pair.

Re: [flexcoders] SOLVED...Simply!!! Re: Passing variables from .swf to .swf

2009-01-22 Thread Adrian Williams
at the document.parameters.projectName *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On Behalf Of *Adrian Williams *Sent:* Thursday, January 22, 2009 9:35 AM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] SOLVED...Simply!!! Re: Passing variables from .swf

Re: [flexcoders] SOLVED...AGAIN!!!! Re: Passing variables from .swf to .swf

2009-01-22 Thread Adrian Williams
bandwidth available *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On Behalf Of *Adrian Williams *Sent:* Thursday, January 22, 2009 1:51 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders

[flexcoders] Passing variables from .swf to .swf

2009-01-21 Thread Adrian Williams
Hi All, I've been researching this challenge and am not sure which of the methods I've found is the best...need some input on this one. I have a dashboard application (dashboard.swf) that uses multiple swfloaders to load the various widgets that the user needs (which are also .swf's).

Re: [flexcoders] Passing variables from .swf to .swf

2009-01-21 Thread Adrian Williams
*From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On Behalf Of *Adrian Williams *Sent:* Wednesday, January 21, 2009 11:53 AM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] Passing variables from .swf to .swf Hi All, I've been researching

Re: [flexcoders] What is the results of a web service

2009-01-21 Thread Adrian Williams
Hi Wally, Any particular reason you are not setting a resultFormat on your mx:operation? For example: mx:operation name=service resultFormat=object result=serviceResult(event)/ Adrian Wally Kolcz wrote: I am having fits trying to figure out how to use the information coming back

Re: [flexcoders] Passing variables from .swf to .swf

2009-01-21 Thread Adrian Williams
Hi Tracy, Oh if only it were that easy!! Looks like it's gonna have to be much deeperhere's why... A project manager can have any number of projects they run... The dashboard is setup so they have access to all their projects via one dashboard Basically, when they

[flexcoders] DandD of row to last row of last node in grouped ADG throws RTE...looks like Adobe Bug to me...thoughts?

2009-01-16 Thread Adrian Williams
All, I have an ADG that contains a grouped collection. In the dataset, there are 21 nodes...each node has 1 to many children. When I attempt to drag a row, either from another node or within the last node, and drop it below the last item in the last node(i.e. make it the very last row

Re: [flexcoders] a followup with example! DandD of row to last row of last node in grouped ADG throws RTE...looks like Adobe Bug to me...thoughts?

2009-01-16 Thread Adrian Williams
=expandAllButton click={myADG.expandAll();} label=Expand All/ mx:Button id=collapseAllButton click={myADG.collapseAll();} label=Collapse All/ /mx:HBox /mx:VBox /mx:Application Adrian Williams wrote: All, I have an ADG that contains a grouped collection. In the dataset

[flexcoders] Search Function within a Flex App -- Not Filter

2008-12-18 Thread Adrian Williams
Hi All, I have another wild one...has anyone seen or figured out how to embed a search function within a flex app? I have seen the information on creating filters but they all filter out (read: remove from visibility) all the data that falls outside the filter. In other words, I need

Re: [flexcoders] Re: Setting a specific row in the ADG to editable vs. the entire grid?

2008-12-04 Thread Adrian Williams
--- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com, Adrian Williams [EMAIL PROTECTED] wrote: Hi All, I have a new question that I haven't seen anyone hit yet. I have my ADG that is not editable...however, I need to be able to make a couple of specific rows editable so the user can

[flexcoders] Printing ADG - Livedocs code results in printing gray box

2008-12-04 Thread Adrian Williams
Hi all, I posted this problem awhile back with no response and am going to try again before I call Adobe. I've seen others with the same issue, but no resolutions pending. I have used the code from Adobe's labs website:

Re: [flexcoders]Correction! Printing ADG - Livedocs code results in printing gray box

2008-12-04 Thread Adrian Williams
I pointed to the wrong link. I am actually using the example given in the livedocs material and not the labs. Here is the correct link: http://livedocs.adobe.com/flex/3/langref/mx/printing/PrintAdvancedDataGrid.html Adrian Adrian Williams wrote: Hi all, I posted this problem awhile

Re: [flexcoders] Disable Column reordering on Advanced Data Grid?

2008-12-04 Thread Adrian Williams
We had a similar challenge except we needed to persist to the DB the rearrangement of columns...to do this, we extended the event class for our listeners so we could capture column selection events...You might try using the same thing and on column selected, perform a preventDefault() which

[flexcoders] Tricky one...adding attachments to an email generated from the app

2008-12-04 Thread Adrian Williams
Hi guys, And yet another one that I haven't seen... Part of our app allows a user to send an email to one or more folks in their view. We simply provide a state that has a simple email form they fill out and then we pass that information back through our web service (.NET) that

Re: [flexcoders] Flash being cached

2008-12-02 Thread Adrian Williams
Hey there... We had the same issue and were able to work around it by adding the following three lines to the html wrapper...in the head section: meta http-equiv=Expires content=Mon, 04 Dec 1999 21:29:02 GMT / meta http-equiv=CACHE-CONTROL content=NO-CACHE / meta http-equiv=PRAGMA

[flexcoders] Setting a specific row in the ADG to editable vs. the entire grid?

2008-12-02 Thread Adrian Williams
Hi All, I have a new question that I haven't seen anyone hit yet. I have my ADG that is not editable...however, I need to be able to make a couple of specific rows editable so the user can modify the values in the cells of the row. All of the documentation seems to identify setting up

Re: [flexcoders] Re: Alex et al, Could this be a bug in the AdvancedDataGridBaseEx? WAS- Strange ADG error on deleting entire nodes at once...

2008-11-20 Thread Adrian Williams
the entire stack trace with the linenumbers here. Good luck :) Alex --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com, Adrian Williams [EMAIL PROTECTED] wrote: Ok, I have spent the morning pouring through the debugging trying to figure out what this error is and am completely

Re: [flexcoders] Re: Alex et al, Could this be a bug in the AdvancedDataGridBaseEx? WAS- Strange ADG error on deleting entire nodes at once...

2008-11-20 Thread Adrian Williams
-Beginning-trace-Beyond-happen-as-Entertainment-ppt-powerpoint/ -Alex --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com, Adrian Williams [EMAIL PROTECTED] wrote: Alex, when you say a debug build what do you mean? and how do I access the stack trace? whenever I've heard

[flexcoders] Alex et al, Could this be a bug in the AdvancedDataGridBaseEx? WAS- Strange ADG error on deleting entire nodes at once...

2008-11-19 Thread Adrian Williams
. --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com, Adrian Williams [EMAIL PROTECTED] wrote: All, I could really use some help in identifying where even to begin looking to figure out what's causing this problem. I have a ADG that is displaying a GroupingCollection. I

[flexcoders] Strange ADG error on deleting entire nodes at once...

2008-11-18 Thread Adrian Williams
All, I could really use some help in identifying where even to begin looking to figure out what's causing this problem. I have a ADG that is displaying a GroupingCollection. I have an application control bar that has a trash image. A user can drag a node from the ADG and drop it

Re: [flexcoders] How to apply a custom sort to ArrayCollection??

2008-11-14 Thread Adrian Williams
, Adrian Williams [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: All, I have an ArrayCollection that I'd like to perform an advanced, custom sort on before it's loaded into a List...the custom sort is one that i am using for my ADG, using the column's sortCompareFunction

[flexcoders] How to apply a custom sort to ArrayCollection??

2008-11-13 Thread Adrian Williams
All, I have an ArrayCollection that I'd like to perform an advanced, custom sort on before it's loaded into a List...the custom sort is one that i am using for my ADG, using the column's sortCompareFunction and in a grouping collections compareFunction. I can't seem to figure out how to

Re: [flexcoders] How to access ADG mx_internal _dropData values: Was -- Identifying which node is the drop target on Grouped ADG

2008-11-04 Thread Adrian Williams
] *On Behalf Of *Adrian Williams *Sent:* Monday, November 03, 2008 2:55 PM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] Identifying which node is the drop target on Grouped ADG Hi All, Having a fun one here...I have two ADG's that each have a list of individuals, in a hierarchical

Re: [flexcoders] SOLVED - How to access ADG mx_internal _dropData values: Was -- Identifying which node is the drop target on Grouped ADG

2008-11-04 Thread Adrian Williams
parent node which I can then use to write the data back to my db. Wahoo! Adrian Adrian Williams wrote: Thanks Alex...this is close but not going to work as is...it provides the drop index relative to the currently displayed ADG...so if the first 2 nodes are closed and the 3 is expanded

[flexcoders] Identifying which node is the drop target on Grouped ADG

2008-11-03 Thread Adrian Williams
Hi All, Having a fun one here...I have two ADG's that each have a list of individuals, in a hierarchical grouping collection and have drag drop enabled between the two ADG's. Basically the grouped ADG on the left shows people grouped by which project they are in...the one of the right

Re: [flexcoders] comboBox selectedIndex

2008-10-30 Thread Adrian Williams
If you know what index (n) you want to set it to, comboBox.selectedIndex = n; Adrian Gökhan wrote: How can i change the selectedIndex of a comboBox ? The selectedIndex is get 0 in any case. isn't it writeable ?

Re: [flexcoders] Dynamicaly loading of images

2008-10-30 Thread Adrian Williams
Hi Alexander, Not sure if this helps or not, but for images that I need in my app, I embed them from the get go, bind them and assign them to a var that I can reference on the fly laterand can change by simply changing the source for the image id: [Bindable]

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

2008-10-29 Thread Adrian Williams
, 2008 at 10:34 PM, Adrian Williams [EMAIL PROTECTED] mailto:adrianw%40familytreedna.com 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 state for an HBox, which by all appearances

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

2008-10-29 Thread Adrian Williams
I was wondering the same thing...looks to me like green circle == property blue squares == style lightning bolt == function and no clue what the puffball-like icon is or what it's for Adrian Amy wrote: --- In flexcoders@yahoogroups.com

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

2008-10-29 Thread Adrian Williams
red square == private yellow diamond == internal Adrian Adrian Williams wrote: I was wondering the same thing...looks to me like green circle == property blue squares == style lightning bolt == function and no clue what the puffball-like icon is or what it's

[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

Re: [flexcoders] Passing variables from ASP to flex Application

2008-10-08 Thread Adrian Williams
Hi Mark, The way I solved this challenge in our app (which is using C#/.NET for the data layer) was to create a web service call from our flex app, calling a C# WSDL. The WSDL calls a process that extracts the session variables and returns them as normal data points into the flex app,

[flexcoders] 2nd try...Turning off the auto sort of ADG groupings

2008-09-24 Thread Adrian Williams
All, I discovered a frustrating feature of the ADG when using groupings...the ADG automatically sorts the displayed data by the field you are grouping on. I really, really need the ability to disable this as I am incorporating a displayOrder option for my users to define what order

Re: [flexcoders] 2nd try...Turning off the auto sort of ADG groupings

2008-09-24 Thread Adrian Williams
Group XX and just did a numeric compare on the XX portion? Matt On 9/24/08 7:38 AM, Adrian Williams [EMAIL PROTECTED] mailto:adrianw%40familytreedna.com wrote: All, I discovered a frustrating feature of the ADG when using groupings...the ADG automatically sorts the displayed data

[flexcoders] ADG Automatically Sorts by [EMAIL PROTECTED]#^

2008-09-22 Thread Adrian Williams
Hi y'all, Yet another interesting one in ADG land I have a dataset being returned from my db which includes a groupName (string) and a displayOrder (int). My db query is setup to sort the data based on the displayOrder. So for example, I have 10 groups...named Group 1, Group 2,

[flexcoders] Trouble applying background color to a spanned ADG column via custom renderer

2008-09-08 Thread Adrian Williams
Guys and gals, I'm stumped. I am trying to apply a custom text and background color to (initially) a specific cell in my grouped ADG, using a renderer provider and a custom renderer. The colors are coming from my dataset (part of the user's stored configuration preferences) and the text

[flexcoders] Horrible performance problems...Need some ideas on improving

2008-09-04 Thread Adrian Williams
All, I am seeing some incredible lag while using a couple of simple panels and a complex ADG. While I love the flexibility and power of Flex/AS and the ADG, I really need to overcome these performance problems or the project will sink. My ADG has approx. 100 columns with approx. 200

Re: [flexcoders] Horrible performance problems...Need some ideas on improving

2008-09-04 Thread Adrian Williams
created an extended version of ADG and overrode those two methods (had to copy/paste most of the drawCellItem method) and I removed the calls to validateNow, seemed to speed things up a lot. Doug On Thu, Sep 4, 2008 at 8:06 AM, Adrian Williams [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote

Re: [flexcoders] Horrible performance problems...Need some ideas on improving

2008-09-04 Thread Adrian Williams
sample with the information for each genetic marker. Adrian Tom Chiverton wrote: On Thursday 04 Sep 2008, Adrian Williams wrote: My ADG has approx. 100 columns with approx. 200 rows, I wouldn't consider a 100 row DataGrid a very good user experience, in the general case, so maybe

Re: [flexcoders] Horrible performance problems...Need some ideas on improving

2008-09-04 Thread Adrian Williams
and certainly far lighter then ADG. DK On Thu, Sep 4, 2008 at 12:21 PM, Adrian Williams [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Hi Tom, Under normal circumstances, I would tend to agree...however, it's our users that are demanding the data...in a nutshell, we

Re: [flexcoders] Re: Horrible performance problems...Need some ideas on improving

2008-09-04 Thread Adrian Williams
: One of your problems might be that you're using a grouping grid. I tested an ADG with 5,000 rows, and the grouping version took a huge amount of time to render, while the non-grouping version took just four seconds. --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com, Adrian

Re: [flexcoders] Re: Identifying row index relative to node vs. ADG - childIndex() fails.

2008-08-18 Thread Adrian Williams
? Thanks, Adrian Amy wrote: --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com, Adrian Williams [EMAIL PROTECTED] wrote: Hi all, I have a challenge I am using an ADG in tree mode on a flat array. Everything looks great. One of the requirements is that whenever

Re: [flexcoders] Re: Identifying row index relative to node vs. ADG - childIndex() fails.

2008-08-18 Thread Adrian Williams
? childIndex() is for XML. Tracy *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Adrian Williams *Sent:* Monday, August 18, 2008 12:15 PM *To:* flexcoders@yahoogroups.com *Subject:* Re

Re: [flexcoders] Re: Identifying row index relative to node vs. ADG - data source info.

2008-08-18 Thread Adrian Williams
lem here...that I am not using an XML dataset or am I mis-applying this method? Thanks, Adrian Amy wrote: --- In [EMAIL PROTECTED]ups.com, Adrian Williams [EMAIL PROTECTED] wrote: Hi all, I have a challenge I am using an ADG in tree mode on a flat array. Everything

  1   2   >