Re: [flexcoders] Grid/renderer with AS

2012-07-26 Thread Alex Harui
Usually, the checkbox changes some property in the dataprovider. Your code can check the value of that property. On 7/26/12 5:49 AM, Davidson, Jerry jerry.david...@illinois.gov wrote: I realize it will be several hours before this appears, but as I’m not having much luck it will

Re: [flexcoders] Grid Problems

2010-04-07 Thread Alex Harui
What is the stacktrace from the error? On 4/7/10 12:27 PM, Jeff britton.j...@gmail.com wrote: I have a component that creates a Grid container and adds many rows based on the data. There are instances where the whole grid/grid rows need to be redrawn. Removing all the rows and then

Re: [flexcoders] Grid display question

2008-04-16 Thread Josh McDonald
AFAIK, You can't do this with DataGrid without much hacking. You'll have to cook up something custom using Grid, or use AdvancedDataGrid (which I believe can do this, although I haven't done it). -J On Thu, Apr 17, 2008 at 9:29 AM, nathanpdaniel [EMAIL PROTECTED] wrote: So I have a DataGrid

RE: [flexcoders] Grid display question

2008-04-16 Thread Alex Harui
I think folks are using DataGrids with renderers that contain other datagrids. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh McDonald Sent: Wednesday, April 16, 2008 7:37 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders

Re: [flexcoders] Grid display question

2008-04-16 Thread Josh McDonald
[mailto:[EMAIL PROTECTED] *On Behalf Of *Josh McDonald *Sent:* Wednesday, April 16, 2008 7:37 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Grid display question AFAIK, You can't do this with DataGrid without much hacking. You'll have to cook up something custom using

Re: [flexcoders] Grid Editing

2007-11-19 Thread Scott Melby
The way I typically do this is to have a simple form (asking for only required data) above or below the grid. When the user adds data in this form I add the new row and then clear the form. If you don't want the form visible at all times use an mx:state to hide it until the user gestures

Re: [flexcoders] Grid lines in TileList

2007-11-12 Thread Richard Rodseth
Darn. Any suggestions for the 2-d dashboard-style grid I'm doing? I've played around with PlotChart, but it wants numeric axes, which I suppose I could fudge now that I'm building an adapted model. The TileList is working OK, but I tried alternating colours, and they appear vertically no matter

Re: [flexcoders] Grid lines in TileList

2007-11-12 Thread Richard Rodseth
I was also having trouble getting rotated labels on a PlotChart - if anyone has an example of that, I'd love to see it. On 11/12/07, Richard Rodseth [EMAIL PROTECTED] wrote: Darn. Any suggestions for the 2-d dashboard-style grid I'm doing? I've played around with PlotChart, but it wants numeric

Re: [flexcoders] Grid lines in TileList

2007-11-12 Thread Richard Rodseth
To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Grid lines in TileList Darn. Any suggestions for the 2-d dashboard-style grid I'm doing? I've played around with PlotChart, but it wants numeric axes, which I suppose I could fudge now that I'm building an adapted model. The TileList

RE: [flexcoders] Grid lines in TileList

2007-11-12 Thread Alex Harui
Have the renderer draw borders? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Richard Rodseth Sent: Monday, November 12, 2007 3:32 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Grid lines in TileList Darn. Any

RE: [flexcoders] Grid editor not being reused

2007-10-17 Thread Alex Harui
Only renderers are recycled. We might recycle editors someday, but not in 3.0 either. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of reflexactions Sent: Tuesday, October 16, 2007 11:18 PM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Grid columns of fixed and equal width

2007-05-03 Thread cooper_martin
] On Behalf Of Alex Harui Sent: Saturday, April 14, 2007 12:49 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Grid columns of fixed and equal width What happened when you gave each column the same fixed width

RE: [flexcoders] Grid columns of fixed and equal width

2007-04-14 Thread cooper_martin
Pretty please? Even a response telling me that it's a bonehead question and I'm a dolt for asking would tell me _something_. ;-) Thanks! -- Martin Cooper From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent:

RE: [flexcoders] Grid columns of fixed and equal width

2007-04-14 Thread Alex Harui
What happened when you gave each column the same fixed width? From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Friday, April 13, 2007 9:30 AM To: [EMAIL PROTECTED] Subject: RE: [flexcoders] Grid columns of fixed and equal

RE: [flexcoders] grid header becomes invisible while scroll

2007-03-29 Thread Alex Harui
Does it reproduce with fewer columns? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sanjaypmg Sent: Thursday, March 29, 2007 5:43 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] grid header becomes invisible while scroll Hi

RE: [flexcoders] Grid

2006-06-14 Thread Robert Brueckmann
Try looking at the custom cell renderer examples to get checkbox and comboboxes in your datagrid by running the samples webapp that comes with the Flex installation (of checking it out at the bottom of this page: http://www.adobe.com/devnet/flex/example_apps.html) or you can read about it

RE: [flexcoders] Grid

2006-06-14 Thread Evan Gifford
How about a replicator in a scroller? Im using this to display a checkbox next to contact information in a list. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hitch_nj Sent: Wednesday, June 14, 2006 12:56 PM To: flexcoders@yahoogroups.com Subject:

Re: [flexcoders] Grid

2006-06-14 Thread Oscar . Cortes
I think this is known problem with Flex 1.5, check the FAQ list http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt. On the other hand, I ran once into this and I actually created AS classes for a couple of the functions that I had in my mxml file. Another option is what your

RE: [flexcoders] Grid

2006-06-14 Thread Tracy Spratt
It sounds like your issue is communicating between components (and the main app). In your case, I suspect you will need to, in the component, do something like: var oSelectedItem:Object = mx.core.Application.application.myComboBoxId.selectedItem; Also see this example:

Re: [flexcoders] Grid Creation from XML

2005-05-21 Thread Manish Jethani
On 5/21/05, Jae Hess [EMAIL PROTECTED] wrote: I have a Grid that i am using RowSpan and Colspan with the GridItem's. I am curious if there is any way to Create this Grid dynamically from XML data? Try using a Repeater and putting GridItem's inside that. Yahoo! Groups Links * To visit

RE: [flexcoders] Grid Creation from XML

2005-05-20 Thread Abdul Qabiz
Is it possible to create GridRows and GridItems via Actionscript? Yes, you can see the following sample code. I have a Grid that I am using RowSpan and Colspan with the GridItem's. I am curious if there is any way to Create this Grid dynamically from XML data? Or is there a way that i

Re: [flexcoders] grid does not occupy all of TabNavigator container ?

2005-04-17 Thread jamesw
I don't have a perfect solution yet, but the DataGrid is getting clipped by the Application container, which extends Box. You can set a width=700 on your Positions.mxml Application container and you will see the whole DataGrid. However, this may not be perfect since you might want a percentage

RE: [flexcoders] Grid alignment

2005-02-12 Thread Steven Webster
Title: Message I'm using a grid for layout purposes and can't seem to get one of my items to align right. I basically want two items on the same row but one ofthem aligned right and one aligned left (labels). Hey John - this is what we'd call a "bad code smell" and is one of the MXML

RE: [flexcoders] Grid alignment

2005-02-12 Thread John C. Bland II
, 2005 3:27 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Grid alignment I'm using a grid for layout purposes and can't seem to get one of my items to align right. I basically want two items on the same row but one of them aligned right and one aligned left (labels). Hey John

RE: [flexcoders] Grid alignment

2005-02-12 Thread John C. Bland II
n C. Bland II [mailto:[EMAIL PROTECTED] Sent: 12 February 2005 16:56To: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Grid alignment Ok coo Steven. I'll give that a look. I started to ask the question if using Grids was like using tables in html. Should I only use them for data l