[flexcoders] Re: Sorting in AdvancedDatagrid in Flex 3

2010-08-30 Thread tntomek
One option is to apply the sort on your collection and pull the records in out, sort, re-set to datagrid. this is a bit trickier then you might think but its possible. So AC.sort = someSort; var orderedRows:Array = AC.source; grid.dataProvider = new AC(orderedRows) Something along those

[flexcoders] ActionScript dispatchEvent silently fails with ‘Asynchronous viewer update’ mess

2010-07-29 Thread tntomek
I'm manually dispatching a propertyChanged event from my model only to never have it be caught. When I try to debug and step into (F5) the dispatchEvent call I get FlashBuilder error Asynchronous viewer update displayed twice. Does anyone have an idea why this might be failing? Possibly

[flexcoders] Re: Is possible to display any Collection within another Collection using anyone fle

2010-06-24 Thread tntomek
? Do you have an idea? --- In flexcoders@yahoogroups.com, tntomek tntomek@ wrote: You can use a multiline label Function to display your text. In your label function simply append \n as you loop through your sub collection http://tomek.me --- In flexcoders@yahoogroups.com

[flexcoders] Re: What happened to Flex 4 SDK nightly builds?

2010-06-23 Thread tntomek
Wild guess, 4.1 is 'out' and they are working on 4.5 but the SDK site hasn't been updated to that yet. --- In flexcoders@yahoogroups.com, Baz li...@... wrote: I just went to check out the Flex 4 SDK nightlies ( http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4) and noticed

[flexcoders] Re: Is possible to display any Collection within another Collection using anyone fle

2010-06-23 Thread tntomek
You can use a multiline label Function to display your text. In your label function simply append \n as you loop through your sub collection http://tomek.me --- In flexcoders@yahoogroups.com, Jesus Saad jesus.s...@... wrote: Is possible to display any Collection within another Collection

[flexcoders] Re: Why does applying Filter to container change anti-aliasing on inner text control

2010-06-15 Thread tntomek
Bump anyone --- In flexcoders@yahoogroups.com, tntomek tnto...@... wrote: I have this simple piece of code. mx:DropShadowFilter id=contentDropShadow strength=1 distance=2 blurX=15 blurY=10 / mx:HBox filters={[contentDropShadow]} mx:Label text=Search / /mx:HBox Zooming in to see

[flexcoders] Why does applying Filter to container change anti-aliasing on inner text control

2010-06-10 Thread tntomek
I have this simple piece of code. mx:DropShadowFilter id=contentDropShadow strength=1 distance=2 blurX=15 blurY=10 / mx:HBox filters={[contentDropShadow]} mx:Label text=Search / /mx:HBox Zooming in to see the anti aliasing on the word 'Search' I see hints of red and teal. Once I apply the

[flexcoders] No Flex builds since May 21st?

2010-06-02 Thread tntomek
Curious if anyone has any info, it's very unusual to see no nightlies for so long (this is a good thing). Is 4.1 done and baking?

[flexcoders] Re: Overhead of curly braces :)

2010-05-06 Thread tntomek
I can't believe that bug was just closed, yes adding an @ is s hard, what is wrong with these guys, I'm with you Oleg, any of those options are infinitely better than nothing. -Tomek (http://tomek.me) --- In flexcoders@yahoogroups.com, Oleg Sivokon olegsivo...@... wrote: Nope, it

[flexcoders] Re: Problem sorting AdvancedDataGrid

2010-04-22 Thread tntomek
, Apr 21, 2010 at 10:18 AM, tntomek tnto...@... wrote: the part where it actually creates the subgrouped nodes (or leaf nodes), you will notice sort is not used on those sub array collections. Actually, though, my sort is breaking down earlier - on the main nodes of the group. It's

[flexcoders] Re: Problem sorting AdvancedDataGrid

2010-04-22 Thread tntomek
AM, tntomek tnto...@... wrote: See if u can find your sort actually being used, Unfortunately , this is proving a little problematic. I don't know why this is happening, but when I control-click on GroupingCollection to open the file and set a breakpoint, Flex Builder/Eclipse just gives

[flexcoders] Re: Problem sorting AdvancedDataGrid

2010-04-22 Thread tntomek
) (be mindful of exact spelling, sometimes they spell with Z sometimes with S). This will let you debug those files. --- In flexcoders@yahoogroups.com, Tom McNeer tmcn...@... wrote: Hi, Again, thanks to everyone for their replies. On Thu, Apr 22, 2010 at 3:00 AM, tntomek tnto...@... wrote: See

[flexcoders] Re: Problem sorting AdvancedDataGrid

2010-04-22 Thread tntomek
and look at source attachment. This is how it matches the source code with SWC. Pretty funny how its broken isn't it :) this is not just you but everyone!!! for over a release now. --- In flexcoders@yahoogroups.com, Tom McNeer tmcn...@... wrote: On Thu, Apr 22, 2010 at 5:59 PM, tntomek tnto

[flexcoders] Re: Problem sorting AdvancedDataGrid

2010-04-21 Thread tntomek
If im not mistaken, debuggin through GroupingCollection, the part where it actually creates the subgrouped nodes (or leaf nodes), you will notice sort is not used on those sub array collections. GC is a really worthwhile class to understand if you are dealing with hierarchical data, it's

[flexcoders] Re: Is it possible to inspect a function (to determine it's and parameters)?

2010-04-13 Thread tntomek
http://tech.groups.yahoo.com/group/flexcoders/message/154284 I just asked a very similar question a few days ago, hope it helps -Tom (http://tomek.me) --- In flexcoders@yahoogroups.com, kidl33t kidl...@... wrote: I have a method which takes a function as one of its parameters. Is there any

[flexcoders] Re: Is it possible to inspect a function (to determine it's and parameters)?

2010-04-13 Thread tntomek
lol its rob --- In flexcoders@yahoogroups.com, kidl33t kidl...@... wrote: I have a method which takes a function as one of its parameters. Is there any way to inspect this function and determine what parameters it takes? I have tried both getClassInfo()and describeType(). describeType

[flexcoders] Recalling Validator recreating/duplicating errorString even when its cleared

2010-04-12 Thread tntomek
I have a static helper method I call that validates required field. var text:TextInput= new TextInput(); if I run this twice: validateRequired(text); validateRequired(text); My text.errorMessage = This field is required\nThis field is required I noticed that we keep pushing errorMessage to the

[flexcoders] Re: Recalling Validator recreating/duplicating errorString even when its cleared

2010-04-12 Thread tntomek
. --- In flexcoders@yahoogroups.com, tntomek tnto...@... wrote: I have a static helper method I call that validates required field. var text:TextInput= new TextInput(); if I run this twice: validateRequired(text); validateRequired(text); My text.errorMessage = This field is required

[flexcoders] Re: Does filterFunction create a new array behind the scenes?

2010-04-12 Thread tntomek
You can easily check by looking at @objectId but I think no since filterFunction is native part of Array --- In flexcoders@yahoogroups.com, Baz li...@... wrote: Hi, Anyone know what filterFunction on an ArrayCollection does to the source array behind the scenes? Does it create a new subset

[flexcoders] Get name of function from within the function? Get arguments for any function?

2010-04-05 Thread tntomek
I'm trying to get 2 things: 1) Name of current function 2) Get list of arguments for some arbitrary function Is this possible? Here is an example: someMethod(jack, someCallback); - function someMethod(name:String, callback:Function) { // from here I'd

[flexcoders] Re: Get name of function from within the function? Get arguments for any function?

2010-04-05 Thread tntomek
Thank you, very interesting. Now since the callee would typically be a Flex based UI control describeType might be a bit heavy (yes/no?). I am basically trying to wrap RemoteObject calls and automatically instantiate a typed ArrayCollection (since remote object will always be Array or

[flexcoders] Re: Get name of function from within the function? Get arguments for any function?

2010-04-05 Thread tntomek
a reference to the current function and arguments.length the number of args. You can access them like as an array arguments[0] ect. Hope that helps On Mon, Apr 5, 2010 at 11:10 AM, tntomek tnto...@... wrote: I'm trying to get 2 things: 1) Name of current function 2) Get list of arguments

[flexcoders] Fold empty packages when using SVN

2010-03-29 Thread tntomek
This might be more of an Eclipse/Subversive/Subclipse question but I thought I'd post anyways. Is there any way to get Flash Builder to auto fold empty packages when using SVN? Eclipse is nice enough to not show the .svn subfolders but looks like that is independent of the part where it auto

[flexcoders] Re: How to monkey patch using multiple libraries?

2010-03-25 Thread tntomek
-secret project that might have the side effect of minimizing the chance that you find yourself pinned down like this in the future. On 3/23/10 6:32 PM, tntomek tnto...@... wrote: Thanks again :) I'll take your advice and file a formal patch. Just so you know my initial

[flexcoders] Re: Framework Choice

2010-03-24 Thread tntomek
Thumbs up for just using Flex SDK as the framework. Make good use of custom business interfaces and ensure all developers develop controls within some container vs Application/Module (leave the loading of their actual code to someone who really understands Flex). Also take the hit and wrap most

[flexcoders] Re: How to monkey patch using multiple libraries?

2010-03-23 Thread tntomek
. Newest one wins. Make sure the SWCs are listed in the correct order just to be safe in your project properties. I'm not sure if code hints go lookin for the time stamps. On 3/22/10 5:30 PM, tntomek tnto...@... wrote: Seems like monkey patching works when everything

[flexcoders] Re: How to monkey patch using multiple libraries?

2010-03-23 Thread tntomek
So looks like the only way to monkey patch when using libraries is just to have copies of all the mx.* monkey patched files in ALL projects. Only be doing this will the compiler be happy and it doesn't consider those files as duplicates. --- In flexcoders@yahoogroups.com, tntomek tnto

[flexcoders] Re: How to monkey patch using multiple libraries?

2010-03-23 Thread tntomek
On 3/23/10 12:17 AM, tntomek tnto...@... wrote: Thanks Alex I'll give the order a shot. I'm not so much introducing a new api as adding a bool to toggle some behavior, be default it will behave like vanilla. The specific issue is to disable sort in ListCollectionView

[flexcoders] Re: How to monkey patch using multiple libraries?

2010-03-23 Thread tntomek
it only does that for drag/drop and you should be able to subclass ADG, override dragCompleteHandler and call your own version of addItemsToTarget. Then you wouldn't need to monkeypatch ADG. On 3/23/10 2:10 PM, tntomek tnto...@... wrote: Hi Alex, Specific issues I've had were

[flexcoders] How to monkey patch using multiple libraries?

2010-03-22 Thread tntomek
Seems like monkey patching works when everything is included in 1 project but not when using libraries. What happens when I have 2 projects and monkey patch is in other one. i.e. MainAppProject (contains MainApp.mxml) -SomeLibraryProject (this has the monkey patch code, i.e. Button) Now in my

[flexcoders] Re: FileReference.load() not found -- help please?

2010-03-19 Thread tntomek
If this problem is in the IDE open all your .project/.flexProperties etc files and manually search for 9.x. Flex libraries don't have version number exposed in the IDE which makes it even harder to troubleshoot -Tom Gruszowski (http://tomek.me) --- In flexcoders@yahoogroups.com, reflexactions

[flexcoders] Re: Extending AdvancedDataGrid for displaying number of row above it

2010-03-16 Thread tntomek
You might be able to get away with what you are trying to do, I'm not sure what the bug you are having is but it's solvable. After you get your solution working, and if your grid is editable, you will run into a focus bug. For some reason when you prepend a control before the

[flexcoders] Re: Flex Advanced datagrid Auto-sort Disable

2010-03-16 Thread tntomek
Search for user tntomek on Flex forums, I answered this there. -Tomek, Sharply Flexing (http://tomek.me) --- In flexcoders@yahoogroups.com, meh.manoj meh.ma...@... wrote: is there any way to remove the auto-sorting in advanceddatagrid in flex 3. i need columns to get sorted only on clicking

[flexcoders] Re: Flex Advanced datagrid Auto-sort Disable

2010-03-16 Thread tntomek
I posted about the solution on my blog, check it out :) http://tomek.me --- In flexcoders@yahoogroups.com, tntomek tnto...@... wrote: Search for user tntomek on Flex forums, I answered this there. -Tomek, Sharply Flexing (http://tomek.me) --- In flexcoders@yahoogroups.com, meh.manoj

[flexcoders] Re: Filtering Hierachical Data in tree

2010-03-16 Thread tntomek
I would recommend the AdvancedDataGrid for this. You can easily make it behave exactly like a tree and it fully supports HierarchicalCollectionView. -Tom Gruszowski (http://tomek.me) --- In flexcoders@yahoogroups.com, free man free_man_2...@... wrote: Hi All,   I am question regarding

[flexcoders] Re: Does DataBinding to a function create a ChangeWatcher?

2010-03-01 Thread tntomek
Hi Chris, Check this vid out: http://tv.adobe.com/watch/360flex-conference/diving-in-the-data-binding-waters-by-michael-labriola/ --- In flexcoders@yahoogroups.com, Christopher McArthur cmcart...@... wrote: I am doing some performance/memory cleanup in my rather large application and looking

[flexcoders] Re: horizontal DG

2010-02-23 Thread tntomek
I think you can use lockedColumn to simulate the grid header on y axis. Then programmatically add n-columns. Note that there are performance considerations for having a very wide grid, its certainly not as fast as default setup. You will also need a dataprovider that you can map column data

[flexcoders] Is removing a child from DisplayList better the visible=includeInLayout=false?

2010-02-23 Thread tntomek
Assuming you want to use that UIComponenet again in future and not destro it, does the lifecycle of a UiComponent still kick in when includeInLayout is false? is it much more efficient to remove it from displ

[flexcoders] Re: styleFunction AdvancedDataGridColumn

2010-02-19 Thread tntomek
Be careful with column styleFunction, it can be REALLY slow. Better to just put all style changes in renderer. --- In flexcoders@yahoogroups.com, csmarvz csma...@... wrote: Hi, I have myCustomADGC that extends AdvancedDataGridColumn. Where in myCustomADGC can I put something like : if

[flexcoders] Re: Will Flash 10.1 do much for Flex or is it mostly for video?

2010-02-19 Thread tntomek
abilities, I'm not real sure there's going to be much that affects us Flex developers. Laurence MacNeill Mableton, Georgia, USA --- In flexcoders@yahoogroups.com, tntomek tntomek@ wrote: bump --- In flexcoders@yahoogroups.com, tntomek tntomek@ wrote: Seems like the recent Adobe vs

[flexcoders] Re: Will Flash 10.1 do much for Flex or is it mostly for video?

2010-02-18 Thread tntomek
bump --- In flexcoders@yahoogroups.com, tntomek tnto...@... wrote: Seems like the recent Adobe vs Jobs fiasco brought up some good performance debates. So will 10.1 really improve core non-video line of business Flex apps? or is is mostly to help CPU of youtube down and enable better mobile

[flexcoders] Re: Creating a build.xml for a project that uses as3corelib

2010-02-17 Thread tntomek
: --- In flexcoders@yahoogroups.com, tntomek tntomek@ wrote: Paul, why not pull down the AS3corelib source and compile that, its pretty easy since you can just specify include=*. Thanks, I might give that a go. I wish I had a better (some!) understanding of how FlexBuilder builds

[flexcoders] Re: AdvancedDataGrid's default columns

2010-02-17 Thread tntomek
Henry, manually setting up column fields takes probably 5 lines of code, there really is no good reason other then for demos to show how easy it is to bind grid to data to use the automatic feature. Since you are using custom columns you must be doing something beyond that. --- In

[flexcoders] Will Flash 10.1 do much for Flex or is it mostly for video?

2010-02-16 Thread tntomek
Seems like the recent Adobe vs Jobs fiasco brought up some good performance debates. So will 10.1 really improve core non-video line of business Flex apps? or is is mostly to help CPU of youtube down and enable better mobile flash

[flexcoders] Re: Creating a build.xml for a project that uses as3corelib

2010-02-12 Thread tntomek
Paul, why not pull down the AS3corelib source and compile that, its pretty easy since you can just specify include=*. --- In flexcoders@yahoogroups.com, Paul Sanders tendan...@... wrote: I have a Flex project that uses as3corelib for JSON coding and decoding and it builds and deploys fine

[flexcoders] Re: ArrayCollection of a specific type?

2010-02-11 Thread tntomek
I make custom wrappers for all my AC's So instead of getItemAt() : Object I have getCustomTypeAt() : CustomType etc. Its a 10 second copy paste job and well worth it esp when you plan on using this collection more than once. The Web Services AS proxy generation does this. --- In

[flexcoders] Re: Limited Heap Space Problem

2010-02-11 Thread tntomek
'New' and '2Gb of ram' is an oxymoron in 2010 :) buy some RAM. 2 Gb for serious flex work doesnt cut it. My Flex/Flash Builder uses easily uses a gig. --- In flexcoders@yahoogroups.com, James garymoorcroft_...@... wrote: Ok I've managed to find the file which controls the heap space which Flex

[flexcoders] Re: FLEX SDK Release Notes

2010-02-10 Thread tntomek
not want them being seen by Steve Jobs ;-) ? --- In flexcoders@yahoogroups.com, tntomek tntomek@ wrote: Tehre are tons of change post, ususaly from dot to do. i.e 3.33.43.5 If you really want why not log into bug tracker and view fixes yourself. --- In flexcoders

[flexcoders] Re: Flex Out Of Memory Errors

2010-02-10 Thread tntomek
Google JVM options for your flexbuilder.ini file. Something like -Xms1024 --- In flexcoders@yahoogroups.com, James garymoorcroft_...@... wrote: I keep getting a flex out of memory error to do with java heap space every time I run an app which is very big as it's 15,000 lines of code long and

[flexcoders] Re: Has AdvancedDataGrid been removed from Flex 3.4

2010-02-09 Thread tntomek
@yahoogroups.com, tntomek tntomek@ wrote: Please do a quick google for Flex to see latest version and instructions for installing it. Since you got 3.4 you must have skipped the 'other' downloads. --- In flexcoders@yahoogroups.com, rashvi05 rashvi05@ wrote: Hi I have

[flexcoders] Re: FLEX SDK Release Notes

2010-02-09 Thread tntomek
Tehre are tons of change post, ususaly from dot to do. i.e 3.33.43.5 If you really want why not log into bug tracker and view fixes yourself. --- In flexcoders@yahoogroups.com, alexeoscar alexeos...@... wrote: Is there an online document at Adobe web site to show what has changed between

[flexcoders] Re: Steve Jobs on Flash .......

2010-02-08 Thread tntomek
I was a hard core ASP.NET/pure JavaScript guy before I moved to Flex 3 years ago and I will NEVER go back. Those are some of the saddest programming days I can recall. Working with Flex/AS I feel like a real programmer again, I use objects and develop elegant solutions that really make me feel

[flexcoders] Re: Has AdvancedDataGrid been removed from Flex 3.4

2010-02-08 Thread tntomek
Please do a quick google for Flex to see latest version and instructions for installing it. Since you got 3.4 you must have skipped the 'other' downloads. --- In flexcoders@yahoogroups.com, rashvi05 rashv...@... wrote: Hi I have this strange problem. I have been using FlexBuilder version

[flexcoders] Will Flex 4 work in Flash Player 9? @playerversion Flash 9 seems to say yes

2010-02-03 Thread tntomek
I'm specifically referring to MX controls. What else would be the point of all the documented @playerversion Flash 9 annotations?

[flexcoders] Re: 3.5 is out!!!

2009-12-20 Thread tntomek
DragManager received a couple of fixes too. -- Best regards, Andriy Panas 2009/12/14 Matt Chotin mcho...@...: 3.5 is very minor, a few bug fixes including fixing a regression with the services from 3.4. Matt On Dec 13, 2009, at 7:47 PM, tntomek wrote: --- In flexcoders

[flexcoders] Re: 3.5 is out!!!

2009-12-13 Thread tntomek
--- In flexcoders@yahoogroups.com, Penny Laus pennyl...@... wrote: I haven't been following the SDK's progress closely so I'm not sure what 3.5 offers over what I'm using now (3.2). Can anyone point to a release document or overview that explains the features and benefits of the 3.5 SDK?

[flexcoders] 3.5 is out!!!

2009-12-11 Thread tntomek
http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+3 Is there DMV released with this as well?

[flexcoders] Re: 3.5 is out!!!

2009-12-11 Thread tntomek
updated as well. Matt On Dec 11, 2009, at 3:12 PM, tntomek wrote: http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+3 Is there DMV released with this as well?

[flexcoders] Re: Link Bar behaves differently after SDK 3.4.1 update

2009-12-09 Thread tntomek
3.4 and 3.4.1 (5 lines of code changed) are flaky, I would recommend the 3.5 nightly and from what Matt Chotin said the official should be out any day now. --- In flexcoders@yahoogroups.com, Romeo Obane ro...@... wrote: Greetings, In the code below, you can have a LinkBar that depends it's

[flexcoders] Re: Is 3.5 nightly SDK more stable than 3.4.1?

2009-11-30 Thread tntomek
Awesome Matt, always excited when more stuff is fixed. --- In flexcoders@yahoogroups.com, Matt Chotin mcho...@... wrote: milestone is coming pretty soon (a week or two). On Nov 29, 2009, at 1:35 PM, tntomek wrote: I had an issue after upgrading to 3.4/3.4.1 where my datagrid would throw

[flexcoders] Is 3.5 nightly SDK more stable than 3.4.1?

2009-11-29 Thread tntomek
I had an issue after upgrading to 3.4/3.4.1 where my datagrid would throw a selectedItem not in list exception (forgot exact details). This seems to have been fixed in 3.5 as it no longer happens. Is there even a rough guess when 3.5 nightly might be promoted to stable or even milestone build?

[flexcoders] Re: Fluorine fx, enterprise library, flex problem

2009-11-26 Thread tntomek
This just sounds like a .NET issue nothing to do with flex, app.config and web.config are almost identical in nature and structure. ?xml version=1.0 encoding=utf-8? configuration configSections configuraiton goes into root of web.config Try on ASP.NET forums to find better answers

[flexcoders] Re: When does 0.2 and 0.1 not equal 0.3?

2009-11-25 Thread tntomek
So to reliably add 0.1 and 0.2 I need to convert them to ints? This must be a joke, its not adding anything complicated. So is there a Flex wrapper for this? math.add(0.1, 0.2) ? How can we be sure that 2 numbers we just added equal the true sum? --- In flexcoders@yahoogroups.com, kidl33t

[flexcoders] Update ADG when group is collapsed not taking affect

2009-11-21 Thread tntomek
I am updating one of my underlying group rows externally via code (as opposed to item editor). Everything works fine when the group is expanded but if I update when group is collapsed ADG must be trying to optimize itself and not redraw the group. Right now I'm using grouplabel function to draw

[flexcoders] Re: Help! - AdvancedDataGrid - Applying sort as if user clicked column header

2009-11-21 Thread tntomek
Nothing is happening because the event has no context of the column that was supposedly clicked, try adding more arguments into the createEvent method. Having said that, this is probably not the recommended way of programmaticaly invoking sort on the grid. Have a look around there we some

[flexcoders] Re: Help! - AdvancedDataGrid - Applying sort as if user clicked column header

2009-11-21 Thread tntomek
@yahoogroups.com, tntomek tntomek@ wrote: Nothing is happening because the event has no context of the column that was supposedly clicked, try adding more arguments into the createEvent method. Having said that, this is probably not the recommended way of programmaticaly invoking

[flexcoders] How to tell when column visiblity change is done?

2009-11-19 Thread tntomek
I have a datagrid with a lot of columns. Sometimes I may hide/show 20 of those at a time, this takes up a few seconds and I'd like to give the user some feedback when its ready. Is there any way to get visibilityChanged event or something along these lines? If there is no solution like this

[flexcoders] Re: How to tell when column visiblity change is done?

2009-11-19 Thread tntomek
@yahoogroups.com, tntomek tntomek@ wrote: I have a datagrid with a lot of columns. Sometimes I may hide/show 20 of those at a time, this takes up a few seconds and I'd like to give the user some feedback when its ready. Is there any way to get visibilityChanged event or something along

[SPAM] [flexcoders] Re: Get strong propertyName from object so it would break at compile time if changed

2009-11-08 Thread tntomek
Of droponrcll Sent: Sunday, November 08, 2009 10:07 AM To: flexcoders@yahoogroups.com Subject: [SPAM] [flexcoders] Re: Get strong propertyName from object so it would break at compile time if changed --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , tntomek tntomek

[flexcoders] Get strong propertyName from object so it would break at compile time if changed

2009-11-07 Thread tntomek
Is there a way to get a strong property name from an object? scenario ... Person class having weight property var column:DataGridColumn column.dataField = weight; can i do something like: column.dataField = Person.weight.getPropertyName(); ... so that if this weight property is renamed one

[flexcoders] Re: Disable sort when values in grid change (on propertyChanged)

2009-10-28 Thread tntomek
of a transaction system where changes are queued to temporary places until committed. 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 tntomek Sent: Friday

[flexcoders] Re: Disable sort when values in grid change (on propertyChanged)

2009-10-23 Thread tntomek
will be incorrect since it will use the new sort order. 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 tntomek Sent: Thursday, October 22, 2009 5

[flexcoders] Disable sort when values in grid change (on propertyChanged)

2009-10-22 Thread tntomek
I don't want my grid reordering itself on every propertyChanged event that would cause the sort order to change, can I prevent this somehow? I understand this is default behavior but it's not an option for our customer, and it is really annoying when the 1000 row grid is re-ordered every time

[flexcoders] Re: How to work with flex and a c# backend

2009-10-09 Thread tntomek
Flex works like a peach with any backend, we successfully use it with C#/ASP,NET. There is another post about this recently, have a look there. Deserializers will correctly convert your NaN to C# 0 and are fully built to do even the most complex object correctly. And if you can you remoting not

[flexcoders] Re: ADG enhancements for contract, serious ADG experts

2009-10-05 Thread tntomek
Bump --- In flexcoders@yahoogroups.com, tntomek tnto...@... wrote: Does anyone have any recommended consultants who are experts with the grid? We have a need to extend ADG's functionality. Immediate requirement is to optimize horizontal scrolling to behave the same as vertical

[flexcoders] ADG enhancements for contract, serious ADG experts

2009-09-30 Thread tntomek
renderers that are in view. This is just the start; there are other features performance bugs in addition to this one. Unfortunately we can't wait until 2023 when Flex 5 finally ships with a replacement grid control. If anyone knows a reputable person please send email to: tntomek at --- hotmail

[flexcoders] Re: Is Flex 3.4 DMV source in wrong place?

2009-09-11 Thread tntomek
--- In flexcoders@yahoogroups.com, Tom Chiverton tom.chiver...@... wrote: On Friday 11 Sep 2009, tntomek wrote: Is the default zip of Flex 3.4 source in the wrong place? Might be better asking Matt Chotin directly and then posting back here in case he misses it. -- Helping

[flexcoders] Is Flex 3.4 DMV source in wrong place?

2009-09-10 Thread tntomek
Is the default zip of Flex 3.4 source in the wrong place? it extracts to ... ...sdks\3.4.0\frameworks\projects\datavisualisation\src Flex builder Library path for datavisualization.swc expects it to be in: ...sdks\3.4.0\fbpro\projects\datavisualisation\src I had to manually add this to Source

[flexcoders] Re: Flex DMV 3.4.0

2009-08-28 Thread tntomek
using and reading about it, it seems like its a bastard child This was the best evil comment I've read to describe ADG... sad but true. -Mika On Thu, Aug 27, 2009 at 5:17 PM, tntomek tntomek@ wrote: --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Mika

[flexcoders] Re: Flex DMV 3.4.0

2009-08-28 Thread tntomek
--- In flexcoders@yahoogroups.com, Jeffry Houser j...@... wrote: I'd love to hear more specifics on your issues w/ the ADG and/or what would inspire you to buy a third party alternative. tntomek wrote: What in your opinion does 4 bring to the table for enterprise

[flexcoders] Re: Flex DMV 3.4.0

2009-08-27 Thread tntomek
--- In flexcoders@yahoogroups.com, Mika Kiljunen mkintens...@... wrote: Hi, I just downloaded and installed DMV 3.4.0 with Flex SDK 3.4.0. I compared the sources of DMV 3.3.0 and 3.4.0 and it seems pretty close to nothing has changed. For example even a closed bug from Adobe Bug Issue

[flexcoders] Re: Will Flex Builder be updated with 3.4 SDK release?

2009-08-27 Thread tntomek
minute, you'll need to use the FB4 beta for that. Matt On 8/26/09 3:12 PM, tntomek tnto...@... wrote: --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , tntomek tntomek@ wrote: Also will DMV be updated with 3.4 as well? It would be really nice to have

[flexcoders] Re: Flex DMV 3.4.0

2009-08-27 Thread tntomek
--- In flexcoders@yahoogroups.com, Jeffry Houser j...@... wrote: Does DMV refer to the data visualization package? IF so, what does the M stand for? I didn't see any news about it becoming available for free either. For the record, I checked my Flex Builder 3 install and the source

[flexcoders] Re: Flex DMV 3.4.0

2009-08-27 Thread tntomek
--- In flexcoders@yahoogroups.com, Jeffry Houser j...@... wrote: But, if I have the ActionScript source code why would I need to do that? Can't I just compile my own swc? I feel like I'm missing a piece of the puzzle. tntomek wrote: Previously for 3.3 you had to run

[flexcoders] Re: Will Flex Builder be updated with 3.4 SDK release?

2009-08-26 Thread tntomek
--- In flexcoders@yahoogroups.com, tntomek tnto...@... wrote: Also will DMV be updated with 3.4 as well? It would be really nice to have native Eclipse 3.5 installer. Looking forward to the updated reliability (fingers crossed) in 3.4 SDK Thx for link but no mention of DMV or Eclipse 3.5

[flexcoders] Will Flex Builder be updated with 3.4 SDK release?

2009-08-25 Thread tntomek
Also will DMV be updated with 3.4 as well? It would be really nice to have native Eclipse 3.5 installer. Looking forward to the updated reliability (fingers crossed) in 3.4 SDK

[flexcoders] Re: ADG/DataGrid cell change performance on large data set

2009-06-08 Thread tntomek
--- In flexcoders@yahoogroups.com, tntomek tnto...@... wrote: When I edit a cell and press Tab to move horizontally to the next cell in the same row the grid behaves wonderfully. If however, I make my next selection to another row this becomes incredibly slow (10-15 seconds). Is there any

[flexcoders] Re: Is SDK 3.4.0 a stable release?

2009-06-08 Thread tntomek
--- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: 3.4 is also a pre-release and not an official release Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com

[flexcoders] ADG/DataGrid cell change performance on large data set

2009-06-03 Thread tntomek
When I edit a cell and press Tab to move horizontally to the next cell in the same row the grid behaves wonderfully. If however, I make my next selection to another row this becomes incredibly slow (10-15 seconds). Is there any reason for this slowdown? I'm using a ArrayCollection of typed

[flexcoders] Re: ADG/DataGrid prevent render even from firing immediately on propertyChange

2009-06-02 Thread tntomek
--- In flexcoders@yahoogroups.com, tntomek tnto...@... wrote: --- In flexcoders@yahoogroups.com, foobone9 foobone9@ wrote: You might try enableAutoUpdate and disableAutoUpdate on ICollectionView, not sure if that has the desired affect or not. You could also put custom events in your

[flexcoders] Re: ADG/DataGrid prevent render even from firing immediately on propertyChange

2009-05-29 Thread tntomek
explicitly tell the grid when to update. --- In flexcoders@yahoogroups.com, tntomek tntomek@ wrote: Hi, Is there any way to tell the ADG to not re-render itself immediately after a propertyChanged even has been fired in the dataProvider? I have quite a wide row (lots of cells

[flexcoders] ADG/DataGrid prevent render even from firing immediately on propertyChange

2009-05-28 Thread tntomek
Hi, Is there any way to tell the ADG to not re-render itself immediately after a propertyChanged even has been fired in the dataProvider? I have quite a wide row (lots of cells) and lots of custom logic that updates these dependent properties on each row. i.e. calculated columns. I am doing

[flexcoders] Re: Nightly build of datavisualization SDK

2009-03-17 Thread tntomek
--- In flexcoders@yahoogroups.com, linko27 link...@... wrote: Hello! Is there a nightly build of the datavisualization SDK? I have problems with a memory leak in the charting component and need to update the SDK. Thanks Ron There isn't, since DMV is not free so they can't or won't

[flexcoders] Re: Flex 3.3 and Flash Player 10.0.22 coming?

2009-03-03 Thread tntomek
--- In flexcoders@yahoogroups.com, Tianzhen Lin tang...@... wrote: Not sure if this is old news, I just noticed a massive commit of Flex framework classes on Flex framework's repository, along with a nifty comment Merge 3.x revisions 5042,5072-5073,5090-5091 - trunk This includes the latest

[flexcoders] Re: AdvancedDataGridColumnGroup dynamically speaking

2009-02-20 Thread tntomek
If I understand your problem correctly you just need column groups. http://livedocs.adobe.com/flex/3/html/help.html?content=advdatagrid_09.html --- In flexcoders@yahoogroups.com, wpageiii bi...@... wrote: I am having some issues creating AdvancedDataGridColumnGroup (ing) in Actionscript...

[flexcoders] Re: AdvancedDataGridColumnGroup dynamically speaking

2009-02-20 Thread tntomek
You have to set ADG.groupedColumns and not columns when grouping. --- In flexcoders@yahoogroups.com, wpageiii bi...@... wrote: I am having some issues creating AdvancedDataGridColumnGroup (ing) in Actionscript... Here is what I have tried... var length : int

[flexcoders] Re: Bug in ADG?, possible to bind labelFunction to editor with no dataField?

2009-02-02 Thread tntomek
--- In flexcoders@yahoogroups.com, tntomek tnto...@... wrote: Hi, Does anyone have any idea how to edit data that does not come from fixed object properties i.e. myObject.Name but myObject.Attributes[2] which might be name? I have a 2D array, array of rows and array of cells for each row

[flexcoders] mx.controls.* vs mx.control.TextInput affect SWF size

2009-02-02 Thread tntomek
Is the Flex compiler smart enough not to include dependent objects that are not used? Does this apply to SDK and custom classes in the same way? What about DMV? Do any of my unused custom classes get compiled? If I have a Utility/Helper project that is quite large will it affect my SWF size if i

[flexcoders] Re: Bug in ADG?, possible to bind labelFunction to editor with no dataField?

2009-02-02 Thread tntomek
From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of tntomek Sent: Thursday, January 29, 2009 6:07 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Bug in ADG?, possible to bind labelFunction to editor with no dataField? Hi, Does anyone have any

[flexcoders] Bug in ADG?, possible to bind labelFunction to editor with no dataField?

2009-01-30 Thread tntomek
Hi, Does anyone have any idea how to edit data that does not come from fixed object properties i.e. myObject.Name but myObject.Attributes[2] which might be name? I have a 2D array, array of rows and array of cells for each row, both are arbitrary. I have this successfully displayed my data in

  1   2   >