[flexcoders] Re: Flex Application Memory Footprint

2009-02-11 Thread Vijay Anand Mareddy
Are you referring to the following bug? http://bugs.adobe.com/jira/browse/FLEXDMV-1968 I think this is fixed in the latest release 3.0.2 not sure. --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: If you have more header renderers than columns, I'd be checking them for leaks

[flexcoders] Reduce the height of sortItemRenderer ( AdvancedDataGridHeaderRenderer )

2008-11-04 Thread Vijay Anand Mareddy
I extended the AdvDataGridHeaderRenderer and added a TextInput for displaying column totals. All is fine except that i want my TextInput to occupy the complete column width (=100%) and push the sortItemRenderer down. Any comments anybody? ===

[flexcoders] Re: unable to bind to property 'width' on class 'Object'

2008-11-04 Thread Vijay Anand Mareddy
dont worry its only a warning. You can get ride of it by typecasting your Object into an XML like this: { XML(object).width } --- In flexcoders@yahoogroups.com, Juan Carlos M. [EMAIL PROTECTED] wrote: Hi... may this is weird I´ve extended a Canvas component using mxml. When I use that

[flexcoders] Re: updating display of GroupingCollection on AdvancedDataGrid with refresh

2008-11-04 Thread Vijay Anand Mareddy
450 rows shouldnt take so long unless u have summaryfunction and labelfunc etc. First check the performance by removing the SummaryFunction Here is an example on filtering: http://flexpearls.blogspot.com/2008/02/groupingcollection-to-group-mails-on.html If all else fails you might want to try

[flexcoders] Re: DataGridHeader with TextInput : text values lost on scroll

2008-10-10 Thread Vijay Anand Mareddy
Hopeully these will help you arrive at the solution. 1. You need to override the measure and updateDisplayList function whenever u override the createChildren function. 2. I would just extend TextInput rather than AdvDataGridHeaderRender. 3. Note that data object in the HeaderRenderer is an

[flexcoders] Re: AdvancedDataGridHeaderRenderer loses focus on set dataProvider

2008-10-10 Thread Vijay Anand Mareddy
Dont think you should be setting the dataprovider for every key stroke instead Use a timer to see if user has finished typing (~2sec). http://www.adobe.com/cfusion/exchange/index.cfm? event=extensionDetailextid=1047291 --- In flexcoders@yahoogroups.com, Ryan Gravener [EMAIL PROTECTED] wrote:

[flexcoders] Re: AdvancedDataGridColumn sorting lost when i set my own HeaderRenderer

2008-10-10 Thread Vijay Anand Mareddy
); filterButton.x = 2; filterButton.y = 2; } } --- In flexcoders@yahoogroups.com, Vijay Anand Mareddy [EMAIL PROTECTED] wrote: The following sample code has a simple Label

[flexcoders] AdvancedDataGridColumn sorting lost when i set my own HeaderRenderer

2008-10-09 Thread Vijay Anand Mareddy
The following sample code has a simple Label as HeaderRenderer. 1. The background sort icon on AdvDataGridColumn is gone. 2. Default Column Sorting is lost (when sortExpertMode=false) Any help on how to retain the above functionailty and yet use my own HeaderRenderer? ?xml version=1.0

[flexcoders] Re: Unique values on the CategoryAxis

2008-10-09 Thread Vijay Anand Mareddy
already. Cheers, -TH --- In flexcoders@yahoogroups.com, Vijay Anand Mareddy vam2@ wrote: Thanks Tim, the hardcoded uniqueArr as dataprovider works but it doesnt work when i try to use it as a derived function as follows. ?xml version=1.0 encoding=utf-8? mx:Application

[flexcoders] Re: Differences between itemUpdated and setItemAt for ArrayCollections

2008-09-03 Thread Vijay Anand Mareddy
###itemUpdated notifies the view that an item has been updated. Flex says to the view ..you are stale now ...please update yourself with latest changes from the arraycollectionlike a view.refresh() ###SetItemAt is replacing the dataItem in the ArrayCollection. Like when u manually edit

[flexcoders] Re: Differences between itemUpdated and setItemAt for ArrayCollections

2008-09-03 Thread Vijay Anand Mareddy
###itemUpdated notifies the view that an item has been updated. Flex says to the view ..you are stale now ...please update yourself with latest changes from the arraycollectionlike a view.refresh() ###SetItemAt is replacing the dataItem in the ArrayCollection. Like when u manually edit

[flexcoders] Re: Icon Click and iconFunction on ListItemRenderer

2008-07-27 Thread Vijay Anand Mareddy
@yahoogroups.com, Vijay Anand Mareddy [EMAIL PROTECTED] wrote: I am using a simple List with icons and labelText using the iconFunction and labelfunction respectively ...is there a way to tell on mylist.itemClick if the user has clicked on the icon or the labelText ? Both ListEvent.target

[flexcoders] Icon Click and iconFunction on ListItemRenderer

2008-07-22 Thread Vijay Anand Mareddy
I am using a simple List with icons and labelText using the iconFunction and labelfunction respectively ...is there a way to tell on mylist.itemClick if the user has clicked on the icon or the labelText ? Both ListEvent.target and ListEvent.currentTarget are mx.controls.List ...is there

[flexcoders] HorizLine btween last 2 datapoints of a PlotChart[CategoryAxis DateTimeAxis]

2008-06-27 Thread Vijay Anand Mareddy
I have a PlotChart whose Horizontal axis is a CategoryAxis and Vertical axis is a DateTimeAxis. Each dataPoint is plotted against Category[like Apple,Mango] verses DateTime[like 01-Jan-08,01-Feb-08,06-Mar-09 ] There could be more than one datapoint for each category. Now what i am looking for

[flexcoders] Unique values on the CategoryAxis

2008-06-26 Thread Vijay Anand Mareddy
How do i make the CategoryAxis show only unique values In my example, I dont want the Apple to apear twice on the vertical axis. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:Script ![CDATA[ import

[flexcoders] Re: Unique values on the CategoryAxis

2008-06-26 Thread Vijay Anand Mareddy
that from the data. -TH --- In flexcoders@yahoogroups.com, Vijay Anand Mareddy vam2@ wrote: How do i make the CategoryAxis show only unique values In my example, I dont want the Apple to apear twice on the vertical axis. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http