Re: [flexcoders] TileList Itemrenderer's TextInput focus problem on keyboard "Tab" key

2010-05-15 Thread Alex Harui
TileList is not designed to support focusable renderers. You may have to borrow code from List or DataGrid. On 5/14/10 6:52 AM, "Akshar Kaul" wrote: use tabindex property to set the order in which you want to set the focus using tab key... Akshar Kaul On Fri, May 14, 2010 at 11:04, N

Re: [flexcoders] TileList Itemrenderer's TextInput focus problem on keyboard "Tab" key

2010-05-14 Thread Akshar Kaul
use tabindex property to set the order in which you want to set the focus using tab key... Akshar Kaul On Fri, May 14, 2010 at 11:04, Nilesh wrote: > > > Hello Members, > > I am facing problem with textinput focus on keyboard "Tab" key. > > Is there any way to get focus on next fields through

[flexcoders] TileList Itemrenderer's TextInput focus problem on keyboard "Tab" key

2010-05-14 Thread Nilesh
Hello Members, I am facing problem with textinput focus on keyboard "Tab" key. Is there any way to get focus on next fields through keyboard "Tab" key? Here is sample code of my example - /* test.mxml */ http://www.adobe.com/2006/mxml"; initialize="init()" layout="vertical">

RE: [flexcoders] Tilelist Populated by Remote XML Only showing Data from files with > 1 Node

2010-03-30 Thread Tracy Spratt
10 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Tilelist Populated by Remote XML Only showing Data from files with > 1 Node Sorry for the long title but I couldn't think of another way to sum it up. I have a tilelist which is populated by different remote xml files. The problem is i

[flexcoders] Tilelist Populated by Remote XML Only showing Data from files with > 1 Node

2010-03-30 Thread James
Sorry for the long title but I couldn't think of another way to sum it up. I have a tilelist which is populated by different remote xml files. The problem is if any of these files contain only 1 node then their data doesn't appear within the tilelist. I know this is due to the xml files only hav

Re: [flexcoders] TileList Change using File Reference

2010-02-18 Thread Alex Harui
Try arrColl.itemUpdated() On 2/18/10 11:01 AM, "s_hernandez01" wrote: Hey would anyone know how I can change and image inside my tilelist using the File Reference class. I've gotten this far and got stuck on the complete method: http://www.adobe.com/2006/mxml"; layout="horizontal">

[flexcoders] TileList Change using File Reference

2010-02-18 Thread s_hernandez01
Hey would anyone know how I can change and image inside my tilelist using the File Reference class. I've gotten this far and got stuck on the complete method: http://www.adobe.com/2006/mxml"; layout="horizontal">

RE: [flexcoders] TileList performance

2010-02-11 Thread Philip Smith
Found the link. Thank you. To: flexcoders@yahoogroups.com From: loudj...@hotmail.com Date: Thu, 11 Feb 2010 19:11:37 + Subject: RE: [flexcoders] TileList performance Thanks. Where can I download SuperImage? To: flexcoders

RE: [flexcoders] TileList performance

2010-02-11 Thread Philip Smith
Thanks. Where can I download SuperImage? To: flexcoders@yahoogroups.com From: aha...@adobe.com Date: Wed, 10 Feb 2010 17:10:41 -0800 Subject: Re: [flexcoders] TileList performance Also, if you are scrolling, images will get reloaded and a

Re: [flexcoders] TileList performance

2010-02-10 Thread Alex Harui
y with the correct image size. To: flexcoders@yahoogroups.com From: aha...@adobe.com Date: Wed, 10 Feb 2010 14:50:25 -0800 Subject: Re: [flexcoders] TileList performance Use the performance profiler to see where things are taking too much time. Make sure your

RE: [flexcoders] TileList performance

2010-02-10 Thread Philip Smith
Thanks. We realized we were using massive images (and resizing), performance has increased substantially with the correct image size. To: flexcoders@yahoogroups.com From: aha...@adobe.com Date: Wed, 10 Feb 2010 14:50:25 -0800 Subject: Re: [flexcoders] TileList performance

Re: [flexcoders] TileList performance

2010-02-10 Thread Alex Harui
Use the performance profiler to see where things are taking too much time. Make sure your images are tuned to their display size and embed them if you know what they are going to be. On 2/10/10 11:31 AM, "method_air" wrote: Are there any TileList optimization tips? Performance seems slo

[flexcoders] TileList performance

2010-02-10 Thread method_air
Are there any TileList optimization tips? Performance seems slow and choppy even with a small number of images and a fast machine. I would like to utilize this component but the client is currently dissatisfied with it's performance. Do better performing solutions exist (that also utilize the

[flexcoders] Tilelist scrolling using mousewheel

2009-12-18 Thread azona26
I have a tile list which when (vertically) scrolling thru with the mousewheel immediately jumps to the last item - several rows. How can I set the scrollsize in a tile list so that each row is shown when using the mousewheel? If I use the scrollbar's thumb bar it scrolls as expected. Thanks for

[flexcoders] Tilelist: empty cells when refresh dataprovider

2009-11-22 Thread jack_freud
Hi, I have a tilelist with an item renderer, and I refresh the dataprovider that is an arraycollection. The tilelist is set up to display 4 columns, with any number of rows. The number of items will not always be multiples of 4, so there may be empty cells at the end of a row. It works just fi

[flexcoders] TileList custom ItemRenderer - commitProperties not called when selection changes

2009-11-13 Thread Greg Hess
Hi All, I have a custom item renderer in one of my TileList's. I need to set a style of one of the children to indicate selection, I am doing this by overriding commitProperties. However, when debugging the IR's commitProperties does not get called after the selection changes. Is this normal? Ho

Re: [flexcoders] TileList and CustomItemRenderer: How to dynamically change styles

2009-10-09 Thread anuppc
H. Alex i saw your examples ... most are based on DataGrid. I need an example for a TileList. The issue i have is from my external event handler code, how can i change the style on the each item in the TileList. I see that getting a handle to the ItemRenderer is not recommended to change the

RE: [flexcoders] TileList and CustomItemRenderer: How to dynamically change styles

2009-10-09 Thread Alex Harui
c Sent: Friday, October 09, 2009 7:22 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] TileList and CustomItemRenderer: How to dynamically change styles Hi, I'm new to flex, would need some help from the experts. I have a TileList in my application.. Here is the snippet: var favLi

[flexcoders] TileList and CustomItemRenderer: How to dynamically change styles

2009-10-09 Thread anuppc
Hi, I'm new to flex, would need some help from the experts. I have a TileList in my application.. Here is the snippet: var favList:TileList = new TileList(); favList.columnCount = 2; favList.dataProv

RE: [flexcoders] TileList - Items have a border

2009-10-06 Thread Alex Harui
ctober 06, 2009 6:46 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] TileList - Items have a border Hi, I have a TileList Here is a Snippet of code tileList = new TileList(); tileList.percentWidth = 100; tileList.percentHeight = 100; tileList.id = "p

[flexcoders] TileList - Items have a border

2009-10-06 Thread anuppc
Hi, I have a TileList Here is a Snippet of code tileList = new TileList(); tileList.percentWidth = 100; tileList.percentHeight = 100; tileList.id = "picsList"; tileList.dataProvider = parentDocument.partListColl; tileList.itemRenderer = createIte

[flexcoders] Tilelist button

2009-09-09 Thread karlmccracken
I created a horizontal tilelist that displays several images that are loaded dynamically. I need to be able to programmatically delete images from the tilelist. Ideally, I'd like to have a button (red x) appear over an image in the tilelist when the mouse rolls over the individual cell. Then, w

[flexcoders] TileList component order

2009-08-23 Thread Barry Gee
Hi. I have a TileList component in my app, when i had new items to the tile list they get added to the bottom of the display, so when new items are added the user is required to scroll down the list to see the latest images. Can anyone tell me how to make the tile list add new items to the top

[flexcoders] TileList displaying wrong index

2009-08-09 Thread steve horvath
I have a TileList: public function test():void { _includedAlbums.removeItemAt(1); dispatchEvent(new Event("albumToggledEvent")); presentedAlbumIndex--; } BEFORE test(): label1 == 5 label2 == 5 AFTER test(): label1 == 5 label2 == 4 Problem is, when the 5th index is currently

[flexcoders] TileList Item Spacing

2009-07-15 Thread wwwpl
I need to increase the spacing horizontally and vertically between the items in my TileList. I don't see how to do it. Please advise.

Re: [flexcoders] tilelist rowCount not working...

2009-06-24 Thread grimmwerks
Argh. No one's had this issue of setting a rowCount and it not being honored? On Jun 24, 2009, at 2:14 PM, grimmwerks wrote: > I'm using FB3 and setting a tileList's rowCount=2 in the mxml - but > then once adding data it's definately 3 rows I see. > > I've even tried adding tilelist.rowCount

[flexcoders] tilelist rowCount not working...

2009-06-24 Thread grimmwerks
I'm using FB3 and setting a tileList's rowCount=2 in the mxml - but then once adding data it's definately 3 rows I see. I've even tried adding tilelist.rowCount=2 on the dataChange but it's just not doing a THING. Only other option is to set the data it loads in to only 2 rows-amount and 'p

re: [flexcoders] TileList dataprovider change bug?

2009-05-05 Thread j...@cfwebtools.com
. 100 Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103 From: "Ritu Raj Tiwari" Sent: Tuesday, May 05, 2009 8:31 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] TileList dataprovider change bug? I am seeing some strange behaviour w

[flexcoders] TileList dataprovider change bug?

2009-05-05 Thread Ritu Raj Tiwari
I am seeing some strange behaviour with TileList. I am hoping someone can shed some light on this: I have a TileList where I assign it an ArrayCollection for its dataProvider. As I add objects to this collection, the tile list updates faithfully. The problem happens when I switch the dataProvide

[flexcoders] TileList with page number

2009-04-10 Thread christophe_jacquelin
Hello, How to make a tile list of images with several pages like a search in Google ? Thank you, Christophe,

[flexcoders] TileList | ItemRenderer | Allignment is not proper

2009-04-09 Thread ilikeflex
Hi I have tilelist which have checkboxs as itemrenderer. The tilelist has four columns and three rows. All the months are displayed in tilelist.Each month is represented by the check box.The problem i am facing is that checkboxs are not aligned properly.If you run the code below then months ( Mar,

[flexcoders] TileList | ItemRenderer | Allignment is not proper

2009-04-09 Thread ilikeflex
Hi I have tilelist which have checkboxs as itemrenderer. The tilelist has four columns and three rows. All the months are displayed in tilelist.Each month is represented by the check box.The problem i am facing is that checkboxs are not aligned properly.If you run the code below then months ( M

[flexcoders] tilelist with dynamic row heights

2009-03-25 Thread stinasius
how can i make the tilelist have dynamic row heights?

RE: [flexcoders] tilelist HighlightIndicator effects

2009-02-08 Thread Alex Harui
lexcod...@yahoogroups.com] On Behalf Of stinasius Sent: Sunday, February 08, 2009 7:00 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] tilelist HighlightIndicator effects hi i would like to define fade or move (or a combination of both) effects for a tilelist's HighlightIndicator so that inst

[flexcoders] tilelist HighlightIndicator effects

2009-02-08 Thread stinasius
hi i would like to define fade or move (or a combination of both) effects for a tilelist's HighlightIndicator so that instead of just appearing or disappearing it moves and fades in when mouse is over an item in tile list and moves and fades out smoothly when mouse roll's out and is over another it

Re: [flexcoders] TileList / DataGrid View Swap

2009-01-19 Thread Fotis Chatzinikos
t;> Example, http://www.myServer.com/myImages/abc.gif. You would need a >> crosdomain.xml policy file on the image server if the domain is different >> than the domain serving the application. >> >> >> >> Tracy Spratt >> Lariat Services >> >> Fl

Re: [flexcoders] TileList / DataGrid View Swap

2009-01-19 Thread Dan Vega
> > > Tracy Spratt > Lariat Services > > Flex development bandwidth available > -- > > *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On > Behalf Of *Dan Vega > *Sent:* Monday, January 19, 2009 12:07 PM > *To:*

RE: [flexcoders] TileList / DataGrid View Swap

2009-01-19 Thread Tracy Spratt
From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Dan Vega Sent: Monday, January 19, 2009 12:07 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] TileList / DataGrid View Swap I have a datagrid that displays a list of files on a server. What I have done is

[flexcoders] TileList / DataGrid View Swap

2009-01-19 Thread Dan Vega
I have a datagrid that displays a list of files on a server. What I have done is created a button for you to switch back and forth between the datagrid and a tile list view.

RE: [flexcoders] tilelist itemrender problem

2009-01-09 Thread Kenneth Sutherland
January 2009 08:03 To: flexcoders@yahoogroups.com Subject: [flexcoders] tilelist itemrender problem hi guys am having problems with my tilelist itemrenderer. it shows the text but not the image from my server. am using coldfusion backend to query database and pass the result to the tilelist. here is m

[flexcoders] tilelist itemrender problem

2009-01-09 Thread johndoematrix
hi guys am having problems with my tilelist itemrenderer. it shows the text but not the image from my server. am using coldfusion backend to query database and pass the result to the tilelist. here is my itemrender and cfc "itemrender" http://www.adobe.com/2006/mxml";>

RE: [flexcoders] TileList itemRenderer help

2008-12-19 Thread Tracy Spratt
Look into (google) the FlowBox component. Tracy From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Manish Jethani Sent: Friday, December 19, 2008 2:23 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] TileList

Re: [flexcoders] TileList itemRenderer help

2008-12-19 Thread Manish Jethani
On Fri, Dec 19, 2008 at 10:53 PM, lelander wrote: > I build a custom itemRenderer in actionscript for a TileList, that displays > an image and > positions it on the bottom of the tile. I want to be able to programatically > control the size of > the tiles and create an effect when they are res

[flexcoders] TileList itemRenderer help

2008-12-19 Thread lelander
Hello! I build a custom itemRenderer in actionscript for a TileList, that displays an image and positions it on the bottom of the tile. I want to be able to programatically control the size of the tiles and create an effect when they are resized. What methods do I need to interact with in

[flexcoders] Tilelist image help

2008-12-09 Thread arulmurugan thiagarajan
Hi, http://www.calsoftgroup.com/samspick/index.html Using a Tilelist to show a books title, image, description, rating, authorurl. The image is not rendered it is different from what I am seeing in a picture viewer. actual image width = 100 and height =150 (Image url http://www.calsoftgroup.co

Re: [flexcoders] TileList

2008-11-27 Thread Eduardo Souza
com [mailto:[EMAIL PROTECTED] *On > Behalf Of *Eduardo Souza > *Sent:* Tuesday, November 25, 2008 12:12 PM > *To:* flexcoders@yahoogroups.com > *Subject:* [flexcoders] TileList > > > > Hello everyone, > > I've two TileLists control in my Panel. I want to detect when

[flexcoders] TileList scrolling broken

2008-11-26 Thread Amy
I have a TileList that is inside a Canvas that is set to clipContent="true". The reason for this is that when the user makes a selection from the TileList, the TileList "slides" to one side and another TileList (really the same TileList) slides in with different information. The problem is th

RE: [flexcoders] TileList

2008-11-25 Thread Tracy Spratt
@yahoogroups.com Subject: [flexcoders] TileList Hello everyone, I've two TileLists control in my Panel. I want to detect when the user have taked one and put it in the other. I want to detect when that item leaved my TileList too. And I want to disable the user to take the item and drag

[flexcoders] TileList

2008-11-25 Thread Eduardo Souza
Hello everyone, I've two TileLists control in my Panel. I want to detect when the user have taked one and put it in the other. I want to detect when that item leaved my TileList too. And I want to disable the user to take the item and drag it to the same tilelist, what I need to do? Thanks Edua

[flexcoders] Tilelist and lists in general minimum height is always 2 rendered children?

2008-10-19 Thread fotis.chatzinikos
It seems that a tilelist (or any list in general) with a percent height = 100% does not respect this but automatically makes its minimum height equal to the height of two display items (using a custom renderer. Is there a way to fix this? Example: Canvas[300x600] (width-height) canvas[100%x10

Re: [flexcoders] TileList and preloaders

2008-10-09 Thread Haykel BEN JEMIA
You could create two states for the component: "loading" and "loaded". In the "loading" state, you show some progress component (preloader) and remove it in the "loaded" state. When you do the HTTPSService call, set the state to "loading", when you get the result, save the number of images in a var

[flexcoders] Tilelist scrolling issues

2008-10-09 Thread Nik Derewianka
Hi, I have a 1 row, 6 column tilelist that i want to scroll left and right via two buttons, but not via the skin (its not appropriate for a bunch of reasons). What should I be calling from the buttons to scroll the tilelist forward and backwards through the dataprovider items ?? I have

[flexcoders] TileList and preloaders

2008-10-09 Thread jch92592
I have a TileList for which I am using an itemRenderer to populate. The itemRenderer consists of an image and label components. The items for the TileList are the results of an HTTPService call. What is the best way to incorporate a preloader until the TileList is completely populated with my item

[flexcoders] TileList changing items displayed after scrolling

2008-09-18 Thread Kyle
I'm having some serious issues with the TileList. I've created a class that extends ArrayCollection to use as my DataProvider (strictly for the fact of strong typing), then created a custom item renderer overrides the set data method and creates an image from the data that is passed in. This all wo

RE: [flexcoders] Tilelist itemrender component access

2008-09-16 Thread Alex Harui
lection/dataprovider using ICollectionView/IViewCursor or IList APIs From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David Gironella Sent: Tuesday, September 16, 2008 6:21 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Tilelist itemrender component access I ha

RE: [flexcoders] Tilelist itemrender component access

2008-09-16 Thread David Gironella
Guillaume Malartre Enviado el: martes, 16 de septiembre de 2008 14:36 Para: flexcoders@yahoogroups.com Asunto: Re: [flexcoders] Tilelist itemrender component access Could you be more explicit. Those functions need to be run on the creationComplete event or on a click event or remotely? If you want

Re: [flexcoders] Tilelist itemrender component access

2008-09-16 Thread Guillaume Malartre
Could you be more explicit. Those functions need to be run on the creationComplete event or on a click event or remotely? If you want to call those methods from outside of the tileList I suggest you to look at TileBase/ListBase function indexToItemRenderer<../../../mx/controls/listClasses/ListBase

[flexcoders] Tilelist itemrender component access

2008-09-16 Thread David Gironella
I have a tilelist with a itemrenderer, each itemrender component is a canvas, inside canvas I have a public function. How can I execute this public function for each component on tilelist? Thk. Giro.

RE: [flexcoders] TileList: Tiles possible with different width/height ??

2008-09-02 Thread Alex Harui
herif Abdou Sent: Tuesday, September 02, 2008 6:06 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] TileList: Tiles possible with different width/height ?? I think it can, check this out http://blog.flexexamples.com/2007/09/28/using-the-flex-tilelist-classs-new-datachangeeffect-style-in-f

Re: [flexcoders] TileList: Tiles possible with different width/height ??

2008-09-02 Thread Sherif Abdou
- Original Message - From: Manu Dhanda To: flexcoders@yahoogroups.com Sent: Tuesday, September 02, 2008 1:10 AM Subject: [flexcoders] TileList: Tiles possible with different width/height ?? Hii, My question is: Can a TileList hold tiles of variable width/height. Or can we play

[flexcoders] TileList: Tiles possible with different width/height ??

2008-09-01 Thread Manu Dhanda
Hii, My question is: Can a TileList hold tiles of variable width/height. Or can we play with a tiles's width/height at runtime? Thanks, Manu. -- View this message in context: http://www.nabble.com/TileList%3A-Tiles-possible-with-different-width-heighttp19264644p19264644.html Sent from the

RE: [flexcoders] Tilelist, ItemRenderer not refreshing when updating dataProvider

2008-07-10 Thread Tracy Spratt
: [flexcoders] Tilelist, ItemRenderer not refreshing when updating dataProvider I have the following scenario, I have a tilelist displaying images, each of which is being created via a custom ItemRenderer. So far so good. Now, I have an upload button, which when clicked, pops-up a TitleWindow and

[flexcoders] Tilelist, ItemRenderer not refreshing when updating dataProvider

2008-07-10 Thread calisza
I have the following scenario, I have a tilelist displaying images, each of which is being created via a custom ItemRenderer. So far so good. Now, I have an upload button, which when clicked, pops-up a TitleWindow and allows the user to add files for upload. They click upload and everything wor

[flexcoders] tilelist and transitions

2008-06-13 Thread giopaia
I have created a series of states with a simple move transition between them... All worked fine until I added a tilelist as child of one of the states. Now the move transition doesn't start until the tilelist is initialized... Tried also to separate the addchildaction of the tilelist using a se

[flexcoders] TileList Fluid Width Columns

2008-05-09 Thread Michael Trim
Hi Flexcoders, I would like to implement a TileList with vertical columns where the width of the columns is fluid. (ie all columns expand to 100% of the available space in equal amounts, equivalent to an HTML table set to 100% with three columns) The column width does not accept percentages. Sh

[flexcoders] TileList Bug

2008-04-15 Thread morgan.gustafsson
Hi, I think I have found a bug in the TileList component but since I'm new to Flex I would like a second opinion. If I filter or scroll a TileList with a custom item renderer, then change state and back again I get the following error message: Main Thread (Suspended: TypeError: Error #1010: A

RE: [flexcoders] TileList is acting strange

2008-04-01 Thread Alex Harui
@yahoogroups.com Subject: [flexcoders] TileList is acting strange Hi. Do you guys have any idea why when i click on the first button and it's state becomes selected=true and I scroll down the first button that shows is also selected? // Main.mxml http://www.adobe.com/2006/mxml <http://www.a

[flexcoders] TileList is acting strange

2008-04-01 Thread mybgmail
Hi. Do you guys have any idea why when i click on the first button and it's state becomes selected=true and I scroll down the first button that shows is also selected? // Main.mxml http://www.adobe.com/2006/mxml";>

Re: [flexcoders] Tilelist itemRenderers

2008-03-02 Thread Douglas Knudsen
If I were a betting man, and I'm not, I'd bet you need to play the override your set data method and set the image properties there. DK On Sat, Mar 1, 2008 at 3:24 PM, guero235 <[EMAIL PROTECTED]> wrote: > I have an odd thing happening in my tilelist. I am using a custom > renderer that basica

[flexcoders] Tilelist itemRenderers

2008-03-01 Thread guero235
I have an odd thing happening in my tilelist. I am using a custom renderer that basical is an image inside of an hbox. For the image source, i am using bindable bitmap data instead of a url. Everything works fine at first, but as the tilelist gets longer, the previous images start disappeari

[flexcoders] Tilelist Error

2008-03-01 Thread John DuPaix
I have an odd this happening in my tilelist. I am using a custom renderer that is an image. For the image source, i am using bindable bitmap data instead of a url. Everything works fine at first, but as the tilelist gets longer, the previous images start disappearing. Then when i scroll up

Re: [flexcoders] Tilelist scrolling out of control during D/D !

2008-01-25 Thread Sherif Abdou
can't you just disable the scrolls? - Original Message From: Ben Marchbanks <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Friday, January 25, 2008 4:59:52 PM Subject: [flexcoders] Tilelist scrolling out of control during D/D ! I have a tileList of images 2 ro

[flexcoders] Tilelist scrolling out of control during D/D !

2008-01-25 Thread Ben Marchbanks
I have a tileList of images 2 rows x 4 cols ) that are D/D enabled to allow for re-ordering the display sequence. Using the standard built-in D /D. Drag and drop itself works fine but the scrolling is totally uncontrollable during the process. When you drag an item there is no way to stop the sc

RE: [flexcoders] TileList Loading shows duplicate ArrayCollection?

2008-01-16 Thread Tracy Spratt
, January 16, 2008 1:05 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] TileList Loading shows duplicate ArrayCollection? I am getting some odd behavior from the TileList when loading and ArrayCollection from the server. I am not sure if this is an actionscript issue OR the way Data Services

[flexcoders] TileList Loading shows duplicate ArrayCollection?

2008-01-16 Thread Kevin
I am getting some odd behavior from the TileList when loading and ArrayCollection from the server. I am not sure if this is an actionscript issue OR the way Data Services serializes the collections. I have bound the DataProvider of my TileList to a paged collection that get's automatically lazy l

RE: [flexcoders] tileList displaying items order other than that represented by dataProvider

2007-12-26 Thread Alex Harui
2:11 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] tileList displaying items order other than that represented by dataProvider I have a problem with a viewStack that has 2 views, a dataGrid and a tileList view both of which which share a common dataProvider. - The tileList us

[flexcoders] tileList displaying items order other than that represented by dataProvider

2007-12-24 Thread Alex
I have a problem with a viewStack that has 2 views, a dataGrid and a tileList view both of which which share a common dataProvider. - The tileList uses an itemRenderer to draw an icon/name for each item. - The datagrid affords the ability to sort the displayed items by clicking on the column heade

RE: [flexcoders] TileList drag/drop error yet again

2007-12-10 Thread Alex Harui
can you post a test case? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ben Marchbanks Sent: Monday, December 10, 2007 8:13 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] TileList drag/drop error yet again I'm back wit

[flexcoders] TileList drag/drop error yet again

2007-12-10 Thread Ben Marchbanks
I'm back with the same tileList D/D error I reported earlier only this time I am using AC as the dataProvider per recommendations (Alex) - error message is the same dropIndicator.x = cc && listItems[rowNum].length && listItems[rowNum][colNum] ? listItems[rowNum][colNum].x : colNum * columnWidth;

[flexcoders] TileList Memory Issues - not freeing up renderers

2007-12-06 Thread rueter007
Hi, I have a tilelist with a custom item renderer showing an image and some text. I used the profiler to look at the memory issues and see that the tilelist is not reusing renderers when the dataprovider changes. It simply creates new renderers. Moreover, when I scroll up and down on the tilelist,

[flexcoders] TileList Drag Problem

2007-10-29 Thread solarpower999
Hello, I was wondering if someone could help me with this problem. I setup a drag and drop operation from a TileList control to a TextArea control and everything works fine. However, there is a bug with the implementation that makes it look unprofessional. The problem lies in the handleMouseMove

RE: [flexcoders] TileList ItemRenderer with different sizes possible?

2007-10-26 Thread Alex Harui
nt: Friday, October 26, 2007 9:46 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] TileList ItemRenderer with different sizes possible? I'm looking for a way to show ItemRenderers of various sizes in a TileList. variableRowHeight will let us set the row height for cells in grids, bu

[flexcoders] TileList ItemRenderer with different sizes possible?

2007-10-26 Thread Jurgen Beck
I'm looking for a way to show ItemRenderers of various sizes in a TileList. variableRowHeight will let us set the row height for cells in grids, but there doesn't seem to be a way to have varying sizes of ItemRenderers for a TileList, or is there? Any suggestion are appreciated! Jurgen

RE: [flexcoders] TileList invalidateList not working

2007-10-02 Thread Alex Harui
Beta2. Just came out this week. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Charles Galpin Sent: Tuesday, October 02, 2007 4:02 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] TileList invalidateList not working What

Re: [flexcoders] TileList invalidateList not working

2007-10-02 Thread Charles Galpin
[mailto:[EMAIL PROTECTED] On Behalf Of Charles Galpin Sent: Tuesday, October 02, 2007 1:52 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] TileList invalidateList not working On Oct 2, 2007, at 3:29 PM, Alex Harui wrote: By default, and for performance reasons, there is no write-

RE: [flexcoders] TileList invalidateList not working

2007-10-02 Thread Alex Harui
ndable, it can't see that either. In Moxie, it looks like we're slightly more tolerant. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Charles Galpin Sent: Tuesday, October 02, 2007 1:52 PM To: flexcoders@yahoogroups.com Subj

Re: [flexcoders] TileList invalidateList not working

2007-10-02 Thread Charles Galpin
On Oct 2, 2007, at 3:29 PM, Alex Harui wrote: By default, and for performance reasons, there is no write- detection to properties. You use proxy, [bindable] or setters to detect writes. Collections will watch their items for changes if they can, but you are using dynamic objects and they

RE: [flexcoders] TileList invalidateList not working

2007-10-02 Thread Alex Harui
@yahoogroups.com Subject: [flexcoders] TileList invalidateList not working Hopefully an easy one. Please try the simple test case below. Select one or more items, enter a new label and click "Update". You can optionally select the checkbox to force an invalidateNow after the update, but either way

[flexcoders] TileList invalidateList not working

2007-10-02 Thread Charles Galpin
Hopefully an easy one. Please try the simple test case below. Select one or more items, enter a new label and click "Update". You can optionally select the checkbox to force an invalidateNow after the update, but either way, the list doesn't refresh. If you scroll down and up, then they ref

[flexcoders] TileList refresh issues, maintaining selection states, binding issues, etc.

2007-09-28 Thread Charles Galpin
Hi All I'll try keep this brief, but wanted to get feedback and opinions on a number of issues which I have run into. I'll be touching on o Issues with getting a TileList to redraw/refresh the tiles o Selection issues and differences between selections made by a user, or programmatically. o

RE: [flexcoders] Tilelist and image

2007-09-27 Thread Alex Harui
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nxzone Sent: Wednesday, September 26, 2007 6:56 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Tilelist and image Hi, I try to do a image browser with a tilelist like this: My dataprovider can be a list of hundreds of

[flexcoders] Tilelist and image

2007-09-27 Thread nxzone
Hi, I try to do a image browser with a tilelist like this: My dataprovider can be a list of hundreds of images. If I scroll, all visible need to be load. This is working but... why when i scroll, all image start to load but never stop to load even when they are hidden... I mean if the imag

RE: [flexcoders] TileList problem - here we go again - drag/drop error

2007-09-24 Thread Alex Harui
remove in dragComplete. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ben Marchbanks Sent: Monday, September 24, 2007 11:20 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] TileList problem - here we go again - drag/drop error Leave it to me

Re: [flexcoders] TileList problem - here we go again - drag/drop error

2007-09-24 Thread Ben Marchbanks
TECTED] > *On Behalf Of *Ben Marchbanks > *Sent:* Monday, September 24, 2007 10:43 AM > *To:* flexcoders@yahoogroups.com > *Subject:* [flexcoders] TileList problem - here we go again - drag/drop > error > > > > I have a TileList with an e4x dataProvider - I want t

RE: [flexcoders] TileList problem - here we go again - drag/drop error

2007-09-24 Thread Alex Harui
hbanks Sent: Monday, September 24, 2007 10:43 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] TileList problem - here we go again - drag/drop error I have a TileList with an e4x dataProvider - I want to simply allow the user to re-order the list using builtin drag and drop. I enabled t

[flexcoders] TileList problem - here we go again - drag/drop error

2007-09-24 Thread Ben Marchbanks
I have a TileList with an e4x dataProvider - I want to simply allow the user to re-order the list using builtin drag and drop. I enabled the list with - drag enabled, drop enabled, move enabled and as soon as an item is dragged it throws an error at the following line in TileBase.as dropIndic

RE: [flexcoders] TileList: disable scrollbar, use button to scroll ?

2007-09-20 Thread Alex Harui
horizontalScrollPolicy="off" horizontalScrollPosition = From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ary Sent: Thursday, September 20, 2007 12:38 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] TileList: disable

[flexcoders] TileList: disable scrollbar, use button to scroll ?

2007-09-20 Thread Ary
Hi, is it possible to be done? disable the horizontal scrollbar of a tileList that displaying some numbers of images, and we put buttons on the left and right side of the tileList to scroll. can some one give me an explanation or example? thanks in advance. ary. ___

RE: [flexcoders] TileList Binding Issue

2007-09-12 Thread Alex Harui
Wow. If you can post a mini-example, we can take a look. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ben Marchbanks Sent: Wednesday, September 12, 2007 1:32 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] TileList

Re: [flexcoders] TileList Binding Issue

2007-09-12 Thread Ben Marchbanks
dnan Doric > *Sent:* Wednesday, September 12, 2007 12:37 PM > *To:* flexcoders@yahoogroups.com > *Subject:* Re: [flexcoders] TileList Binding Issue > > > > I tried this with no success, my TileList items are still not updated. > Maybe something is broken in TileList binding. &

  1   2   >