[flexcoders] datagrid column background color is lost when scrolling.

2012-07-13 Thread Yu, Deyang
Hi, All, I need to make certain datagrid columns non-editable mode. And also use the background color to distinguish it out it is non-editable mode. It works fine when datagrid don't need to be scrolled. But when horizontal scrolling the grid. The column background color is lost. It become

Re: [flexcoders] DataGrid header styles...

2012-05-16 Thread Alex Harui
There is an object or two on each UIComponent that has styles, but it actually has lots of styles that probably don’t matter. I would just call getStyle for the styles you know you can replicate to Excel. On 5/15/12 3:56 PM, aceoohay pa...@compuace.com wrote: Here are two related

[flexcoders] DataGrid header styles...

2012-05-15 Thread aceoohay
Here are two related questions, I am using SDK 3.5 FlexBuilder 3; 1) How can I get the header style information from a datagrid? What I need to do is to extract enough info about each column's header to be able to pass it to an Excel component to style the headers of the spreadsheet. 2) Is

Re: [flexcoders] datagrid not rendering after dataprovider update

2012-04-26 Thread Alex Harui
What are the steps to reproduce the problem? On 4/20/12 12:54 AM, Wouter Schreuders wschreud...@gmail.com wrote: I've made a simple test case in which I can replicate the problem. If anyone feels like having a look you can download it here:

Re: [flexcoders] datagrid not rendering after dataprovider update

2012-04-26 Thread Wouter Schreuders
Hi Alex To replicate the problem. - launch the app (it will populate the datagrid with values) - choose a different date in the date picker on the top left - the dataprovider will get updated but the datagrid doesn't update properly, instead it just remains blank - use the scroller on the

Re: [flexcoders] datagrid not rendering after dataprovider update

2012-04-20 Thread Wouter Schreuders
I've made a simple test case in which I can replicate the problem. If anyone feels like having a look you can download it here: http://www.filefactory.com/file/6oz4m4wrkx31/n/DataGridRender_zip On 4 April 2012 23:12, Alex Harui aha...@adobe.com wrote: ** Do you have a simple test case?

Re: [flexcoders] datagrid not rendering after dataprovider update

2012-04-05 Thread Wouter Schreuders
I'll put one together now and see if I can replicate it On 4 April 2012 23:12, Alex Harui aha...@adobe.com wrote: ** Do you have a simple test case? On 4/4/12 8:43 AM, Wouter Schreuders wschreud...@gmail.com wrote: spark DG On 4 April 2012 17:28, Alex Harui aha...@adobe.com

Re: [flexcoders] datagrid not rendering after dataprovider update

2012-04-04 Thread Wouter Schreuders
I thought that that may be the case, so I removed all my custom itemrenderers but the problem remains, I've also noticed that the problem only occurs after I have entered a date range, if I stick with the standard date range then problem doesn't occur. On 3 April 2012 22:23, Alex Harui

Re: [flexcoders] datagrid not rendering after dataprovider update

2012-04-04 Thread Alex Harui
MX or Spark DG? On 4/4/12 12:05 AM, Wouter Schreuders wschreud...@gmail.com wrote: I thought that that may be the case, so I removed all my custom itemrenderers but the problem remains, I've also noticed that the problem only occurs after I have entered a date range, if I stick with the

Re: [flexcoders] datagrid not rendering after dataprovider update

2012-04-04 Thread Wouter Schreuders
spark DG On 4 April 2012 17:28, Alex Harui aha...@adobe.com wrote: ** MX or Spark DG? On 4/4/12 12:05 AM, Wouter Schreuders wschreud...@gmail.com wrote: I thought that that may be the case, so I removed all my custom itemrenderers but the problem remains, I've also noticed that

Re: [flexcoders] datagrid not rendering after dataprovider update

2012-04-04 Thread Alex Harui
Do you have a simple test case? On 4/4/12 8:43 AM, Wouter Schreuders wschreud...@gmail.com wrote: spark DG On 4 April 2012 17:28, Alex Harui aha...@adobe.com wrote: MX or Spark DG? On 4/4/12 12:05 AM, Wouter Schreuders wschreud...@gmail.com http://wschreud...@gmail.com wrote:

[flexcoders] datagrid not rendering after dataprovider update

2012-04-03 Thread Wouter Schreuders
Hi All I've run into a rendering problem with the datagrid. I have a datagrid that a user can search using a date range, furthermore the user can also search using keywords. I do this by first looking at the date range and applying a filter to the array of objects based on the dates. Then I make

[flexcoders] DataGrid column width to be calculated by headerText

2011-10-08 Thread kg_andrew21
Hey guys, this is my first post, I tried searching for the issue but came up with no matches, so I hope it won't be a duplicate. So what I want to do is this: have a DataGrid that has all its column's width set to the greatest of these 2 values: its typicalItem's width (which without

[flexcoders] DataGrid | itemEditor | focus does not go to first row first column

2010-09-09 Thread Rajan
Hi I am sure most of the devlopers must have seen this sample http://blogs.adobe.com/aharui/DataGridMultiFieldEditor/DataGridMultiFieldEditorTest.swf Challenge: n the sample, use keyboard to tab the complete swf. After all the cell editors and button have recieved the focus atleast once then i

[flexcoders] datagrid itemrenderer breaks custom tooltip

2010-07-02 Thread Scott
I have a normal dataGrid that I created a rollover event to display a custom tooltip on each box. When I added in an itemRenderer this functionality was broken. I'm assuming it's because the itemRenderer is overriding the rollover event? Is that true? The itemRenderer does work ok, it

[flexcoders] datagrid column sorting

2010-07-01 Thread Scott
Take this scenario: . [Bindable] public var acAppts:ArrayCollection = new ArrayCollection(); private function sortDate(itemA:Object, itemB:Object):int { return ObjectUtil.dateCompare( itemA.dtCreated,itemB.dtCreated); } ... mx:DataGrid x=0 y=20 width={CELLWIDTH}

[flexcoders] datagrid checkbox selection

2010-06-30 Thread sunfast_kid
Hi I have a flex/php program that gets report data from a database with php in xml format and the flex/air frontend displays the data in a datagrid. Different reports can return different columns which are passed to the frontend along with the results. I then use the xml list of columns to

Re: [flexcoders] datagrid checkbox selection

2010-06-30 Thread Akshar Kaul
add a boolean field to the data provider and link it to the check box. when you want to find out which rows are selected you can iterate over the data provider and check this boolean field. Akshar Kaul On Wed, Jun 30, 2010 at 19:39, sunfast_kid em...@richardcraig.info wrote: Hi I have a

[flexcoders] DataGrid decides not to render on some occasions

2010-06-29 Thread atomilux
We're dynamically instantiating components 1 or more times in our application depending on user inputs. In some instances, the component's DataGrid decides not to render. I know the DataGrid IS there because it can be accessed and can have its height manipulated, accept additions to the

Re: [flexcoders] Datagrid Column Setting Vertical Gap

2010-06-22 Thread Alex Harui
: [flexcoders] Datagrid Column Setting Vertical Gap Try “leading” On 6/21/10 9:17 AM, Angelo Anolin angelo_anolin@ yahoo.com wrote: Hi FlexCoders, I have a datagrid where I have set the wrapping to true (wordWrap=true) and the row height (variableRowHeight=true). The text wraps

[flexcoders] Datagrid Column Setting Vertical Gap

2010-06-21 Thread Angelo Anolin
Hi FlexCoders, I have a datagrid where I have set the wrapping to true (wordWrap=true) and the row height (variableRowHeight=true). The text wraps properly, except that the Vertical Gap is quite too big. There is a visible space between the lines that were wrapped inside the datagrid. Is

Re: [flexcoders] Datagrid Column Setting Vertical Gap

2010-06-21 Thread Alex Harui
Try “leading” On 6/21/10 9:17 AM, Angelo Anolin angelo_ano...@yahoo.com wrote: Hi FlexCoders, I have a datagrid where I have set the wrapping to true (wordWrap=true) and the row height (variableRowHeight=true). The text wraps properly, except that the Vertical Gap is quite too big.

Re: [flexcoders] Datagrid Column Setting Vertical Gap

2010-06-21 Thread Angelo Anolin
Harui aha...@adobe.com To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Sent: Mon, 21 June, 2010 10:24:54 Subject: Re: [flexcoders] Datagrid Column Setting Vertical Gap Try “leading” On 6/21/10 9:17 AM, Angelo Anolin angelo_anolin@ yahoo.com wrote: Hi FlexCoders, I have

[flexcoders] datagrid refresh

2010-06-17 Thread Scott
When I use CF9 as the datasource; I'm missing the option to refresh the dataProvider. Eg. getAllRecords_paged.lastResult.Refresh() is missing. Does anyone know how I can refresh the datagrid? Thanks. sj

RE: [flexcoders] datagrid refresh

2010-06-17 Thread Scott
@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Scott Sent: Thursday, June 17, 2010 2:06 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] datagrid refresh When I use CF9 as the datasource; I'm missing the option to refresh the dataProvider. Eg

Re: [flexcoders] DataGrid error when scrolling to last row and starting item edit

2010-06-07 Thread Technusiast
@yahoogroups.com Sent: Thursday, June 3, 2010 22:02:43 Subject: Re: [flexcoders] DataGrid error when scrolling to last row and starting item edit Can you reproduce the problem with a generic two-column DataGrid? On 6/3/10 3:48 PM, technusiast technusiast@ yahoo.com wrote: Hi, I have

Re: [flexcoders] DataGrid error when scrolling to last row and starting item edit

2010-06-07 Thread Alex Harui
@yahoogroups.com flexcoders@yahoogroups.com Sent: Thursday, June 3, 2010 22:02:43 Subject: Re: [flexcoders] DataGrid error when scrolling to last row and starting item edit Can you reproduce the problem with a generic two-column DataGrid? On 6/3/10 3:48 PM, technusiast technusiast@ yahoo.com

[flexcoders] DataGrid error when scrolling to last row and starting item edit

2010-06-03 Thread technusiast
Hi, I have a subclass of the DataGrid, with two columns, each with its own renderer. One renderer has a button, which when clicked, starts item edit (consisting of a TextInput). Consistently, when there are too many rows for one pageful, scrolling down to the last row and starting item edit,

Re: [flexcoders] DataGrid error when scrolling to last row and starting item edit

2010-06-03 Thread Alex Harui
Can you reproduce the problem with a generic two-column DataGrid? On 6/3/10 3:48 PM, technusiast technusi...@yahoo.com wrote: Hi, I have a subclass of the DataGrid, with two columns, each with its own renderer. One renderer has a button, which when clicked, starts item edit (consisting

Re: [flexcoders] DataGrid ItemRenderer Problem

2010-05-26 Thread Alex Harui
Try outerDocument On 5/25/10 10:16 PM, jmfillman jmfill...@verizon.net wrote: I have an itemRenderer: mx:DataGridColumn headerText= dataField=remove width=20 mx:itemRenderer fx:Component mx:Image source=assets/Remove-32.png height=20 width=20 useHandCursor=true buttonMode=true

[flexcoders] DataGrid ItemRenderer Problem

2010-05-25 Thread jmfillman
I have an itemRenderer: mx:DataGridColumn headerText= dataField=remove width=20 mx:itemRenderer fx:Component mx:Image source=assets/Remove-32.png height=20 width=20 useHandCursor=true buttonMode=true click=trace (parentDocument); parentDocument.removeItem()/

Re: [flexcoders] DataGrid and XML

2010-05-22 Thread Mauro Emiliano Alturria
Alex thank you very much in fact the DataGrid shows the first series of XML that I generate, but when change the date I generate the new XML and the DataGrid does not reflect the change, there is some type of update that to do? Thanks again Mauro E. Alturria 2010/5/21 Alex Harui

Re: [flexcoders] DataGrid and XML

2010-05-22 Thread Alex Harui
I didn’t see any code that would automatically fetch new data when the data changed. If you click the button after you change the date it should attempt to get new data but if the url is exactly the same, the data might be pulled from the browser cache. On 5/21/10 7:53 PM, Mauro Emiliano

[flexcoders] DataGrid and XML

2010-05-21 Thread Mauro Emiliano Alturria
Friendly of the group I am thankful for the reading of the present mail, the reason for the same is to do a consultation to them on the following subject. Them basically in question comment: I am taking my first steps in Flex 3 and creates an unit which asking for a date carries out via call to a

Re: [flexcoders] DataGrid and XML

2010-05-21 Thread Alex Harui
I placed the XML files in the same folder as the main app and modified the urls to get them and it worked for me. If you make the same changes does it work for you? If so, it might be a server-side issue On 5/20/10 10:39 AM, Mauro Emiliano Alturria mauroaltur...@gmail.com wrote:

[flexcoders] DataGrid in a Spark Window Bug

2010-05-07 Thread Jeff
Hello, I've got a modular application where I popup a TitleWindow for an import Wizard. From there, I try to open a Window with a DataGrid inside. In addition to a bunch of cFF font warnings, this error is thrown: TypeError: Error #1007: Instantiation attempted on a non-constructor.

Re: [flexcoders] DataGrid in a Spark Window Bug

2010-05-07 Thread Alex Harui
So this is an AIR app? Are you using mx:Window or s:Window? Or have you subclassed one of those Window components? Is the DataGrid loaded via a module? It sounds like its moduleFactory is not pointing to the module. On 5/7/10 8:57 AM, Jeff jbarts1...@yahoo.com wrote: Hello, I've got

Re: [flexcoders] DataGrid in a Spark Window Bug

2010-05-07 Thread Haykel BEN JEMIA
Such strange skin related errors in modular applications arise generally when you reference a module by name in another module or application. Use interfaces instead for communication with modules. For more details, look at the following bug report: https://bugs.adobe.com/jira/browse/SDK-26120

[flexcoders] dataGrid ItemRenderer Error

2010-05-05 Thread jmfillman
I'm getting the following error: Access of underfined property data Code (in a skin): mx:DataGrid left=10 top=75 right=10 bottom=10 id=searchGrid dataProvider={hostComponent.search} doubleClickEnabled=true doubleClick={hostComponent.modify()} mx:columns mx:DataGridColumn

Re: [flexcoders] dataGrid ItemRenderer Error

2010-05-05 Thread Alex Harui
Most mx components are capable of being item renderers. Most spark components are not and don’t have a data property. Use MXDataGridItemRenderer and shove all the other things inside it. On 5/5/10 8:54 PM, jmfillman jmfill...@verizon.net wrote: I'm getting the following error: Access

RE: [flexcoders] DataGrid---crushing of DataProvider--how to cancat the last contain of DataProvider with an other one ??? :( :(

2010-04-26 Thread Nini7016 Nini7016
Hello I tried your solution and it works very well :) :) :) Thank yo very much :) :) :) _ Hotmail et MSN dans la poche? HOTMAIL et MSN sont dispo gratuitement sur votre

Re: [flexcoders] DataGrid---crushing of DataProvider--how to cancat the last contain of DataProvider with an other one ??? :( :(

2010-04-26 Thread Oleg Sivokon
Ha, you're welcome :)

[flexcoders] DataGrid---crushing of DataProvider--how to cancat the last contain of DataProvider with an other one ??? :( :(

2010-04-23 Thread Nini7016 Nini7016
Hello I create a DataGrid like this : mx:Panel title= Handing Data height=100% width=100% paddingTop=10 paddingLeft=10 paddingRight=10 !--mx:Label width=100% color=blue text=Select a row in the DataGrid control./-- mx:DataGrid id=dg

Re: [flexcoders] DataGrid---crushing of DataProvider--how to cancat the last contain of DataProvider with an other one ??? :( :(

2010-04-23 Thread Oleg Sivokon
dg.dataProvider will be some kind of a collection already, why won't you concatenate to it and if it is a collection view, call refresh() on it for example?

RE: [flexcoders] DataGrid---crushing of DataProvider--how to cancat the last contain of DataProvider with an other one ??? :( :(

2010-04-23 Thread Nini7016 Nini7016
But how can i cancat it ?? To: flexcoders@yahoogroups.com From: olegsivo...@gmail.com Date: Fri, 23 Apr 2010 18:06:40 +0200 Subject: Re: [flexcoders] DataGrid---crushing of DataProvider--how to cancat the last contain of DataProvider with an other one

Re: [flexcoders] DataGrid---crushing of DataProvider--how to cancat the last contain of DataProvider with an other one ??? :( :(

2010-04-23 Thread Oleg Sivokon
Like this: http://livedocs.adobe.com/flex/3/langref/mx/collections/ListCollectionView.html#addAllAt() ?

RE: [flexcoders] DataGrid---crushing of DataProvider--how to cancat the last contain of DataProvider with an other one ??? :( :(

2010-04-23 Thread Nini7016 Nini7016
which method i use to cancat it PLEASE ?? To: flexcoders@yahoogroups.com From: nahloulaha...@hotmail.com Date: Fri, 23 Apr 2010 18:17:05 +0200 Subject: RE: [flexcoders] DataGrid---crushing of DataProvider--how to cancat the last contain of DataProvider with an other one

RE: [flexcoders] DataGrid---crushing of DataProvider--how to cancat the last contain of DataProvider with an other one ??? :( :(

2010-04-23 Thread Nini7016 Nini7016
; dg.dataProvider = handData.addAll(); } Any help :( :( To: flexcoders@yahoogroups.com From: nahloulaha...@hotmail.com Date: Fri, 23 Apr 2010 18:18:19 +0200 Subject: RE: [flexcoders] DataGrid---crushing of DataProvider--how to cancat the last contain of DataProvider

RE: [flexcoders] DataGrid---crushing of DataProvider--how to cancat the last contain of DataProvider with an other one ??? :( :(--my code modified :(

2010-04-23 Thread Nini7016 Nini7016
@yahoogroups.com From: nahloulaha...@hotmail.com Date: Fri, 23 Apr 2010 18:18:19 +0200 Subject: RE: [flexcoders] DataGrid---crushing of DataProvider--how to cancat the last contain of DataProvider with an other one ??? :( :( which method i

Re: [flexcoders] DataGrid---crushing of DataProvider--how to cancat the last contain of DataProvider with an other one ??? :( :(

2010-04-23 Thread Oleg Sivokon
Your data provider will be some sort of collection view, but I don't know what kind of collection view you are using. What you want to do is to add items to the data provider... Your code above should give you an error, I believe, because addAllAt() returns void (that is undefined / nothing), it

Re: [flexcoders] DataGrid---crushing of DataProvider--how to cancat the last contain of DataProvider with an other one ??? :( :(

2010-04-23 Thread Oleg Sivokon
var dp: ListCollectionView = dg.dataProvider as ListCollectionView; if (dp) dp.addAllAt(figure.getListDataAtt(), dp.length - 1); else dg.dataProvider = figure.getListDataAtt(); * sorry, typo

RE: [flexcoders] DataGrid---crushing of DataProvider--how to cancat the last contain of DataProvider with an other one ??? :( :(

2010-04-23 Thread Nini7016 Nini7016
Thank youuu very much :):):):):):):):):):)):):) To: flexcoders@yahoogroups.com From: olegsivo...@gmail.com Date: Fri, 23 Apr 2010 20:21:22 +0200 Subject: Re: [flexcoders] DataGrid---crushing of DataProvider--how to cancat the last contain

[flexcoders] DataGrid | ItemRenderers | Validation

2010-04-22 Thread Neil Webb
Hi, just looking for advice on the most appropriate way to approach this (or links to existing examples) :) I've got a DataGrid, and the items use a subclass of NumericStepper. This stepper validates itself depending on the total of *all *items in that column (i.e. it styles itself green if the

Re: [flexcoders] DataGrid | ItemRenderers | Validation

2010-04-22 Thread gabriel montagné
Hi Neil, On 22/04/2010, Neil Webb nwebb.co...@gmail.com wrote: [...] So in a nutshell I guess I'm saying, what's the preferred way of validating an itemRenderer, when the validation of that renderer depends on properties of all the itemRenderers in that column? Why don't you validate at

[flexcoders] DataGrid vs List ?

2010-04-16 Thread Nick Middleweek
Hi, Just curious... But why would you use a List control when you can use a DataGrid with one Column? Are there benefits over specifically using a List? It seems that a DG is a List but supports multiple columns... Thanks, Nick

Re: [flexcoders] DataGrid vs List ?

2010-04-16 Thread Angelo Anolin
Nick, Just my thought. I believe rendering datagrid is much slower than a list even if it is only for a single column. Angelo   From: Nick Middleweek n...@middleweek.co.uk To: flexcoders@yahoogroups.com Sent: Fri, 16 April, 2010 9:49:03 Subject: [flexcoders

Re: [flexcoders] DataGrid vs List ?

2010-04-16 Thread Alex Harui
: Nick Middleweek n...@middleweek.co.uk To: flexcoders@yahoogroups.com Sent: Fri, 16 April, 2010 9:49:03 Subject: [flexcoders] DataGrid vs List ? Hi, Just curious... But why would you use a List control when you can use a DataGrid with one Column? Are there benefits over specifically using

[flexcoders] Datagrid cell's x and y coordinates

2010-04-15 Thread sathish_mca_raja
I want a way to find out the Datagrid cell's x and y coordinates.

[flexcoders] datagrid copy data to another datagrid and fire drag drop event

2010-03-16 Thread earula
Hi, Is it possible to copy datagrid data to another datagrid and fire drag drop event. By clicking a button.

Re: [flexcoders] datagrid copy data to another datagrid and fire drag drop event

2010-03-16 Thread Alex Harui
Yes, but why would you need the drag/drop event? Just copy the data from one dataProvider to the other. On 3/16/10 3:27 AM, earula arulmurugan77newslet...@gmail.com wrote: Hi, Is it possible to copy datagrid data to another datagrid and fire drag drop event. By clicking a button.

[flexcoders] DataGrid Row Height - Row Cutoff?

2010-03-05 Thread rojoe615
I am using a data grid and noticed that the last row is cutoff and not fully displayed. (Scrolling down displays everything fine) Is there a setting to make the data grid display the full row on the last line? Thanks, JB

Re: [flexcoders] DataGrid Row Height - Row Cutoff?

2010-03-05 Thread Alex Harui
There is no setting. You can set the width to rows * rowHeight + viewMetrics.top + viewMetrics.bottom; On 3/5/10 6:08 AM, rojoe615 headj...@bellsouth.net wrote: I am using a data grid and noticed that the last row is cutoff and not fully displayed. (Scrolling down displays everything

[flexcoders] DataGrid: Adjusting rowHeight as User is typing in ItemEditor

2010-02-17 Thread Shailesh M
This seems very similar to http://tech.groups.yahoo.com/group/flexcoders/message/116052 http://www.flex888.com/712/datagrid-with-flexible-row-height.html and calling dataGrid.invalidateList(); from within itemEditor works fine. There seems to be a bug in DataGrid whereby, if editing in

Re: [flexcoders] DataGrid: Adjusting rowHeight as User is typing in ItemEditor

2010-02-17 Thread Alex Harui
Maybe try the DG with popup editor example on my blog -- Alex Harui Flex SDK Team Adobe System, Inc. http://blogs.adobe.com/aharui On 2/17/10 3:59 PM, Shailesh M shailesh.man...@gmail.com wrote: This seems very similar to http://tech.groups.yahoo.com/group/flexcoders/message/116052

[SPAM] Re: [flexcoders] DataGrid is blank

2010-01-21 Thread bhaq1972
Harui Sent: Thursday, January 21, 2010 12:10 AM To: flexcoders@yahoogroups.com Subject: [SPAM] Re: [flexcoders] DataGrid is blank It is unusual to be creating new DataGrids in a loop On 1/20/10 8:08 PM, normc_actionscript normcousin...@... wrote: My

[flexcoders] DataGrid is blank

2010-01-20 Thread normc_actionscript
My DataGrid contains data, but is now showing it. (See itemClickEvent function.) Anybody know why? (PS feel free to critisize any other aspect of my code, i'm just learning) public function itemClickEvent(e:ListEvent):void{ Alert.show(String(e.target.selectedItem)); // THIS SHOWS WHAT'S

Re: [flexcoders] DataGrid is blank

2010-01-20 Thread Alex Harui
It is unusual to be creating new DataGrids in a loop On 1/20/10 8:08 PM, normc_actionscript normcousin...@hotmail.com wrote: My DataGrid contains data, but is now showing it. (See itemClickEvent function.) Anybody know why? (PS feel free to critisize any other aspect of my code, i'm

RE: [SPAM] Re: [flexcoders] DataGrid is blank

2010-01-20 Thread Tracy Spratt
Harui Sent: Thursday, January 21, 2010 12:10 AM To: flexcoders@yahoogroups.com Subject: [SPAM] Re: [flexcoders] DataGrid is blank It is unusual to be creating new DataGrids in a loop On 1/20/10 8:08 PM, normc_actionscript normcousin...@hotmail.com wrote: My DataGrid contains

Re: [flexcoders] Datagrid itemrenderer for adding multiple linkbuttons in same gridcolumn

2010-01-13 Thread Tino Dai
Some code would help On Tue, Jan 12, 2010 at 8:36 PM, aramsdell2000 amy.ramsd...@gmail.comwrote: I have a datagrid column that for each row, has several text values each with its own hyperlink. Ex: the data in the datafield looks like: Atext, Btext, Ctext. As it is now, I was able to add

[flexcoders] Datagrid itemrenderer for adding multiple linkbuttons in same gridcolumn

2010-01-12 Thread aramsdell2000
I have a datagrid column that for each row, has several text values each with its own hyperlink. Ex: the data in the datafield looks like: Atext, Btext, Ctext. As it is now, I was able to add href anchor tags but they only open in a new window with the right mouse click. The datagrid item

[flexcoders] Datagrid issue

2010-01-08 Thread ambady
Folks, I am seeing a strange display issue in my data grid. Datagrids typically have background colors for alternate rows. But in my case, when I run my app in certain PCs only some COLUMNS have these alternate background colors, and others dont have it ! I have no clue what is going on or

[flexcoders] DataGrid vs custom getter

2009-12-23 Thread Richard Rodseth
I have a DataGrid column which is not updating when the relevant property is changed, *unless* I have a custom itemrenderer, which I no longer have any other need for. The data provider contains objects with the following properties: [Bindable(event=editedNameChanged)]

RE: [flexcoders] DataGrid vs custom getter

2009-12-23 Thread Alex Harui
:39 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] DataGrid vs custom getter I have a DataGrid column which is not updating when the relevant property is changed, *unless* I have a custom itemrenderer, which I no longer have any other need for. The data provider contains objects

Re: [flexcoders] DataGrid vs custom getter

2009-12-23 Thread Richard Rodseth
Rodseth *Sent:* Wednesday, December 23, 2009 11:39 AM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] DataGrid vs custom getter I have a DataGrid column which is not updating when the relevant property is changed, *unless* I have a custom itemrenderer, which I no longer have any

RE: [flexcoders] DataGrid vs custom getter

2009-12-23 Thread Alex Harui
@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Richard Rodseth Sent: Wednesday, December 23, 2009 11:51 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] DataGrid vs custom getter Hi Alex, I showed the setter for editedName which dispatches editedNameChanged. Similarly

Re: [flexcoders] DataGrid vs custom getter

2009-12-23 Thread Richard Rodseth
@yahoogroups.com *Subject:* Re: [flexcoders] DataGrid vs custom getter Hi Alex, I showed the setter for editedName which dispatches editedNameChanged. Similarly, the setter for role dispatches roleChanged. My understanding is that a getter (name) in this case, can have multiple [Bindable] declarations

Re: [flexcoders] DataGrid vs custom getter

2009-12-23 Thread Richard Rodseth
://blogs.adobe.com/aharui *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On Behalf Of *Richard Rodseth *Sent:* Wednesday, December 23, 2009 11:51 AM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] DataGrid vs custom getter Hi Alex, I showed the setter

RE: [flexcoders] DataGrid vs custom getter

2009-12-23 Thread Alex Harui
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 Richard Rodseth Sent: Wednesday, December 23, 2009 2:55 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] DataGrid vs

[flexcoders] DataGrid adds extra row unexpectedly

2009-12-02 Thread Amy
Hi, all; I have a datagrid whose rowcount is set to thedataGrid.dataProvider.length -1 (because the datagrid has no header row, I have to subtract 1). The problem is that, even though the datagrid's editable property is set to false, there appears to be an extra, invisible row at the bottom of

[flexcoders] Datagrid sorting and ArrayCollection Filtering

2009-11-26 Thread shafram
Hello, I am having a problem related to sorting by a certain column and applying a Filter on an array collection. I'm not sure if this is a bug or not. I have an array collection that has a filter function associated to it. I have a datagrid that is binded to this array collection. Two of the

RE: [flexcoders] Datagrid woes -- IFocusManagerComponent ItemEditors

2009-11-20 Thread sasuke
Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of sasuke Sent: Monday, November 16, 2009 12:34 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Datagrid woes

RE: [flexcoders] Datagrid woes -- IFocusManagerComponent ItemEditors

2009-11-20 Thread Alex Harui
, November 20, 2009 9:12 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Datagrid woes -- IFocusManagerComponent ItemEditors Hi Alex, I'm pretty much sure given that the tabbing works when I remove the itemEditEnd event handler. Removing the handler causes the value in the text box

Re: [flexcoders] Datagrid with rotated headers

2009-11-17 Thread Tino Dai
http://www.badu.ro/?p=19 That should do it. -Tino On Mon, Nov 16, 2009 at 9:10 AM, Allan Pichler dreamc...@gmail.com wrote: Does anyone have a simple example of a datagrid where the column header labels are rotated so they take up minimum space horizontally? Thanks in advance

RE: [flexcoders] Datagrid woes -- IFocusManagerComponent ItemEditors

2009-11-16 Thread sasuke
: Thursday, November 12, 2009 6:34 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Datagrid woes -- IFocusManagerComponent ItemEditors Apologies for the resurrection but any suggestion here would be appreciated. Is using external sites for pasting code [pastie, pastebin

[flexcoders] Datagrid with rotated headers

2009-11-16 Thread Allan Pichler
Does anyone have a simple example of a datagrid where the column header labels are rotated so they take up minimum space horizontally? Thanks in advance --Allan

RE: [flexcoders] Datagrid woes -- IFocusManagerComponent ItemEditors

2009-11-16 Thread Alex Harui
://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of sasuke Sent: Monday, November 16, 2009 12:34 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Datagrid woes -- IFocusManagerComponent ItemEditors Hi Alex

Re: [flexcoders] Datagrid woes -- IFocusManagerComponent ItemEditors

2009-11-12 Thread sasuke
Apologies for the resurrection but any suggestion here would be appreciated. Is using external sites for pasting code [pastie, pastebin] not acceptable here? Would you like me to post the entire code here? Or maybe re-frame my question? TIA -sasuke sasuke wrote: Hi folks, Recently I've

RE: [flexcoders] Datagrid woes -- IFocusManagerComponent ItemEditors

2009-11-12 Thread Alex Harui
, November 12, 2009 6:34 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Datagrid woes -- IFocusManagerComponent ItemEditors Apologies for the resurrection but any suggestion here would be appreciated. Is using external sites for pasting code [pastie, pastebin] not acceptable here

[flexcoders] Datagrid woes -- IFocusManagerComponent ItemEditors

2009-11-10 Thread sasuke
Hi folks, Recently I've been trying to code up a datagrid which would satisfy the following requirements: - should be keyboard enabled i.e. each and every column should be tab-aware - should support hybrid/custom renderers/editors - capable of communicating changes to the underlying dataprovider

[flexcoders] Datagrid measureHeightOfItems wrong - DG harbors items that shouldn't be there

2009-10-28 Thread atomilux
Sorry for the gravity of the accusation - I could be entirely wrong and hopefully this post will flesh out the truth. I'm not sure if what I've found is a clue in the answer to getting this measurement accurately or simply normal and needed functionality of the DataGrid I just don't understand.

RE: [flexcoders] Datagrid measureHeightOfItems wrong - DG harbors items that shouldn't be there

2009-10-28 Thread Alex Harui
...@yahoogroups.com] On Behalf Of atomilux Sent: Tuesday, October 27, 2009 12:27 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Datagrid measureHeightOfItems wrong - DG harbors items that shouldn't be there Sorry for the gravity of the accusation - I could be entirely wrong

[flexcoders] DataGrid ComboBox itemRenderer/editor not updating dataProvider properly

2009-09-26 Thread Greg Lafrance
I have a DataGrid with one column using a ComboBox as the itemRenderer. The column is editable but if you trace the dataProvider, the changes lag behind by one. So uncheck two row's ComboBox and the dataProvider only shows one row's data updated. Listening on the ADG editend or CheckBox change

[flexcoders] DataGrid ItemEditor help

2009-09-23 Thread taude1
Hi All, I've been working with DataGrid itemEditors with a custom checkbox column. It's been challenging, to say the least. I'm at the point where I'm getting ready to scrap the itemEditor infrastructure and just code itemRenderers that can display edit components. It might be easier. I'm

RE: [flexcoders] DataGrid ItemEditor help

2009-09-23 Thread Alex Harui
[mailto:flexcod...@yahoogroups.com] On Behalf Of taude1 Sent: Wednesday, September 23, 2009 8:38 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] DataGrid ItemEditor help Hi All, I've been working with DataGrid itemEditors with a custom checkbox column. It's been challenging, to say

[flexcoders] Datagrid height problem.

2009-09-10 Thread aceoohay
I have a datagrid that displays text from a notes field. I have variableRowHeight=true. This works well unless one record has a note that is larger than the height of the entire grid. In this case I cannot see the bottom of the note. It truncates the lines at the height of the grid There is a

[flexcoders] DataGrid Check box State problem

2009-09-08 Thread Satish Chowdary
Hi All, I am facing the problem with datagrid itemrenderer checkbox my data provider is xmllist and wrote select all checkboxes functionality when trace the application the values is assigned but check box state not changed . help me out Thanks inAdvance సతీష్ See the Web#39;s

Re: [flexcoders] DataGrid Check box State problem

2009-09-08 Thread Wesley Acheson
If checkboxes appear checked when loading the xml but not when changing a value in the xml. Try wrapping the xml list in an XMLListCollection and using that as your dataprovider. If that doesn't work when you programatically change the value refresh the XMLListCollection. I believe you should

[flexcoders] DataGrid RollOver Trashcan like Pixus

2009-08-23 Thread jdizowat
I am really struggling with this idea I got from an air app. I recently downloaded the air app Pixus - http://code.google.com/p/pixus/ If you open the preferences window and hover over a datagrid row, a trashcan becomes visible so you can delete the row you are hovering over. It then hides

[flexcoders] Datagrid - advancing items in a row?

2009-08-23 Thread agaboogaboo
Overview: I want a datagrid, formed by data in an XML file, that displays things in 3 coloumns and 2 rows. The goal is to show 6 items. Example: I have 6 books, each has an author, title, and sales count. I want to display these 6 books in 2 rows and 3 columns, creating 6 spots for each book's

RE: [flexcoders] Datagrid - advancing items in a row?

2009-08-23 Thread Tracy Spratt
@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of agaboogaboo Sent: Sunday, August 23, 2009 7:13 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Datagrid - advancing items in a row? Overview: I want a datagrid, formed by data in an XML file, that displays things in 3 coloumns

  1   2   3   4   5   6   7   8   9   10   >