[flexcoders] Is it possible to set different width for columns in HorizontalList ?

2009-02-16 Thread yossi.baram
Hi, I'm created a new HorizontalList() and tried to set different width of its columns (by override set Data ()) but its always gives me the same width... Can i set the columns width for HorizontalList or is it fixed? Thanks Jo

[flexcoders] Re: Is it possible to set different width for columns in HorizontalList ?

2009-02-16 Thread yossi.baram
, just use HBox and Repeater 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 yossi.baram Sent: Sunday, February 15, 2009 10:05 PM To: flexcoders

[flexcoders] How do I use CellRenderer in my AdvancedDataGrid? please help

2009-02-17 Thread yossi.baram
Hi, I need to implement an ItemRenderer on a specific column, Inside the column I need to hane an HBox that includs several images, the data I can take from the DataProvider of the dataGrid. What is the best way of doing that? Can you give me small example of using the CellRenderer, because I

[flexcoders] Re: How do I use CellRenderer in my AdvancedDataGrid? please help

2009-02-17 Thread yossi.baram
: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of yossi.baram Sent: Tuesday, February 17, 2009 1:41 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] How do I use CellRenderer in my AdvancedDataGrid? please help Hi, I need to implement an ItemRenderer

[flexcoders] How do I get rid of the padding between images layed in HBox?

2009-02-17 Thread yossi.baram
Hi, I created an ItemRenderer (an ActionScript) that extends HBox, This renderer creates a list of images I provide, side by side. The problem is that there is a gap between each image. How do I eliminate it? I want the images stick to each other with no gap, Please advice Thanks Jo

[flexcoders] Re: How do I get rid of the padding between images layed in HBox?

2009-02-17 Thread yossi.baram
Thanks man --- In flexcoders@yahoogroups.com, Brendan Meutzner bmeutz...@... wrote: horizontalGap... On Wed, Feb 18, 2009 at 12:35 AM, yossi.baram yossi.ba...@... wrote: Hi, I created an ItemRenderer (an ActionScript) that extends HBox, This renderer creates a list of images I

[flexcoders] Can I use mouseOver() an image in ActionScript

2009-02-18 Thread yossi.baram
Hi, I have some images in a DataGrid cells and I need to chatch the event when I hover on them. The images are created in an ItemRenderer AC, so it has to be done there, raising an Alert for example. Thanks

[flexcoders] Re: Can I use mouseOver() an image in ActionScript

2009-02-18 Thread yossi.baram
' the mouseOver event as opposed to the itemRenderer component. So, I'd expect you'd need some way to trigger a function in the renderer based on the DataGrid mouseOver . But, this is just my first guess. yossi.baram wrote: Hi, I have some images in a DataGrid cells and I need to chatch

[flexcoders] Re: Can I use mouseOver() an image in ActionScript

2009-02-18 Thread yossi.baram
hi, Please advise. I realy need to know if I can catch the event when I hoover over the cells of the datagrid and what is the function I should override in my AS to allow me do that? Thanks again --- In flexcoders@yahoogroups.com, yossi.baram yossi.ba...@... wrote: Hi, this is rather

[flexcoders] Why cant I use mouseOver() in Image class, but using mx:Image tag, I can?

2009-02-19 Thread yossi.baram
Hi, I have a dataGrid, and in one of the columns I call an ItemRenderer (ActionScript). This renderer should create a list of images as follows: override public function set data(value:Object):void { if (value != null) { removeAllChildren();

[flexcoders] Re: Why cant I use mouseOver() in Image class, but using mx:Image tag, I can?

2009-02-20 Thread yossi.baram
Hi Nate, Thanks, it works But I have one problem, How can I show seperate details for each of the images? rememver I have one cell that includes several images side by side drawn from the loop bellow, and each one need to popup different data on a tooltip. private var tooltipData:String;

[flexcoders] Re: Why cant I use mouseOver() in Image class, but using mx:Image tag, I can?

2009-02-20 Thread yossi.baram
--- In flexcoders@yahoogroups.com, yossi.baram yossi.ba...@... wrote: Hi Nate, Thanks, it works But I have one problem, How can I show seperate details for each of the images? rememver I have one cell that includes several images side by side drawn from the loop bellow, and each one need to popup

[flexcoders] Re: Why cant I use mouseOver() in Image class, but using mx:Image tag, I can?

2009-02-20 Thread yossi.baram
elements in a hashMap. I know Java but rather new in Flex, How can I set a hashMap into my ArrayCollection dp? and what is the attribute I need to set in my panel in order to see it in my tooltip? Thanks again Jo --- In flexcoders@yahoogroups.com, yossi.baram yossi.ba...@... wrote: I think that I

[flexcoders] Eliminating Horizontal scroll on AdvancedDataGridColumn

2009-02-21 Thread yossi.baram
Hi, How do I eliminate horizontal scroll on AdvacedDataGrid columns? If I set horizontalScrollPolicy='off' to the datagrid it eliminates the scroll for all grid, I need the same thing but for each of the columns. I build the columns dynamicaly in my AC var column:AdvancedDataGridColumn = new

[flexcoders] call an ActionScript function from ActionScript

2009-02-21 Thread yossi.baram
Hi guys, I have the following ActionScript file: [Bindable] public function callJavaScript():void { ExternalInterface.call(sayString, Hello World, from ActionScript); } When I try to call callJavaScript() in a different ActionScript class, it gives me a none recognize error :( I

[flexcoders] Re: call an ActionScript function from ActionScript

2009-02-21 Thread yossi.baram
Ok I managed, I just placed the function in an ActionScript class, not a file and called the instance of that class from the other ActionScript Thaks any way --- In flexcoders@yahoogroups.com, yossi.baram yossi.ba...@... wrote: Hi guys, I have the following ActionScript file: [Bindable

[flexcoders] How do I enable a value id datagrid cell to be linked

2009-02-22 Thread yossi.baram
Hi guys, I need some cells in my datagrid to enable navigation to a url I specify. I create all my columns in an ActionScript. How do I do it in my ItemRenderer? I looked at the AdvancedDataGridColumn API and couldnt find anything regards column link (hyperLink) all I see is LinkButton, which is

[flexcoders] Re: How do I enable a value id datagrid cell to be linked

2009-02-22 Thread yossi.baram
Well again, As I guessed LinkButton is the right way, Thanks --- In flexcoders@yahoogroups.com, yossi.baram yossi.ba...@... wrote: Hi guys, I need some cells in my datagrid to enable navigation to a url I specify. I create all my columns in an ActionScript. How do I do it in my

[flexcoders] Re: Eliminating Horizontal scroll on AdvancedDataGridColumn

2009-02-22 Thread yossi.baram
amyblankens...@... wrote: --- In flexcoders@yahoogroups.com, yossi.baram yossi.baram@ wrote: Hi, How do I eliminate horizontal scroll on AdvacedDataGrid columns? If I set horizontalScrollPolicy='off' to the datagrid it eliminates the scroll for all grid, I need the same thing but for each

[flexcoders] Re: call an ActionScript function from ActionScript

2009-02-22 Thread yossi.baram
. Did you do any of that? As an aside, functions are not bindable, except for get / set functions yossi.baram wrote: Hi guys, I have the following ActionScript file: [Bindable] public function callJavaScript():void { ExternalInterface.call(sayString, Hello World, from

[flexcoders] Creating a DataProvider by dynamic loading

2009-02-24 Thread yossi.baram
Hi helper, I have a DataGrid and I need to feed its DataProvider dynamically, I have difficulties doing that. my columns: var columns:ArrayCollection = new ArrayCollection(); columns.addItem(parent); columns.addItem(cell1);

[flexcoders] Re: Creating a DataProvider by dynamic loading

2009-02-24 Thread yossi.baram
; col.headerText = some value2; myDataGrid.columns.push(col); } you'd then generate your dataProvider (could be an ArrayCollection, Array, XML, whatever) myDataGrid.dataProvider = myDataProvider; hope this helps bh --- In flexcoders@yahoogroups.com, yossi.baram yossi.baram

[flexcoders] Re: Creating a DataProvider by dynamic loading

2009-02-24 Thread yossi.baram
= myArray[0]; for(var obj1:Object in row) { var col:DataGridColumn = new DataGridColumn(); col.dataField = obj1; } --- In flexcoders@yahoogroups.com, yossi.baram yossi.baram@ wrote: Thanks man, I am doing something like you mensioned for columns, my problem

[flexcoders] Re: Creating a DataProvider by dynamic loading

2009-02-24 Thread yossi.baram
= myArray[0]; for(var obj1:Object in row) { var col:DataGridColumn = new DataGridColumn(); col.dataField = obj1; } --- In flexcoders@yahoogroups.com, yossi.baram yossi.baram@ wrote: Thanks man, I am doing something like you mensioned for columns, my problem

[flexcoders] Re: Creating a DataProvider by dynamic loading

2009-02-24 Thread yossi.baram
, bhaq1972 mbha...@... wrote: Thanks for your time, realy thats okay. Can you send an example of column array and data array? --- In flexcoders@yahoogroups.com, yossi.baram yossi.baram@ wrote: Hi man, I am very sorry to say that I was not clear :( myArray is what I need

[flexcoders] Re: Creating a DataProvider by dynamic loading

2009-02-24 Thread yossi.baram
Thanks any way... --- In flexcoders@yahoogroups.com, bhaq1972 mbha...@... wrote: Not sure, i'll have a play around. Maybe someone else can take a look. --- In flexcoders@yahoogroups.com, yossi.baram yossi.baram@ wrote: Hi, This is my columns: var columns:ArrayCollection

[flexcoders] Re: Creating a DataProvider by dynamic loading

2009-02-24 Thread yossi.baram
2009 12:09:05 yossi.baram wrote: I am doing something like you mensioned for columns, my problem is the dataprovider itself that I set to the DataGrid. Can I set it dynamically without the need to set columnName:columnValue statically? To be clear :) My current dataprovider is set

[flexcoders] Re: Creating a DataProvider by dynamic loading

2009-02-24 Thread yossi.baram
You are great Thanks man, it works like a charm :) --- In flexcoders@yahoogroups.com, bhaq1972 mbha...@... wrote: Hi jo I've had a little play around with what you gave and came up with the following example. Let us know if this is what you want. ?xml version=1.0 encoding=utf-8?

[flexcoders] Send an object via an ItemRenderer in a DataGrid

2009-02-25 Thread yossi.baram
Hi helper, In my columns I call my ItemRenderer cellValueRenderer rendererProvider = new AdvancedDataGridRendererProvider(); rendererProvider.columnIndex=2; rendererProvider.renderer= new ClassFactory(cellValueRenderer); rendererProvider.dataField='col1';

[flexcoders] Building a collection in Java to be set in a DataGrid using blazeds

2009-02-25 Thread yossi.baram
Hi, I am playing around with remoteObject and displaying string by remote using java class. I need to create a DataGrid and the provider I need to set from my Java class, that means an Array of some sort, using resultHandler(evt:ResultEvent) i think, Can you help me here? Thanks a lot

[flexcoders] Re: Send an object via an ItemRenderer in a DataGrid

2009-02-25 Thread yossi.baram
on that new instance. remember that your renderers will get reused, so newInstance will not be called during the same invalidation cycles as set data. On Wed, Feb 25, 2009 at 3:19 PM, yossi.baram yossi.ba...@... wrote: Hi helper, In my columns I call my ItemRenderer cellValueRenderer

[flexcoders] Re: Send an object via an ItemRenderer in a DataGrid

2009-02-25 Thread yossi.baram
Ok I got it, just using the properties function, Thanks man --- In flexcoders@yahoogroups.com, yossi.baram yossi.ba...@... wrote: --- In flexcoders@yahoogroups.com, Johannes Nel johannes.nel@ wrote: Thanks man, Where do i place my variable exactly? I created the instance: var

[flexcoders] Retrieve column name from a DataProvide r -please advice

2009-02-27 Thread yossi.baram
Hi guys, I have a dataGrid and using RemoteObject to create a TreeGrid. My problem is retrieving the column names from a DataProvider, I know its a collection of Objects (HashMap style) but I couldnt find a way to get the names of the columns, just their values please advice, Thanks Jo

[flexcoders] How to retrive info send as HashMap in ActionScript using blazeds RemoteObject

2009-03-02 Thread yossi.baram
Hi helper, I Have a class in java and one of its properties is: private MapString,UpperlColumnHeader upperColumnHeaders; public HashMapString,UpperlColumnHeader getUpperColumnHeaders() { return upperColumnHeaders; } public void

[flexcoders] Re: How to retrive info send as HashMap in ActionScript using blazeds RemoteObject

2009-03-02 Thread yossi.baram
Ok, I solved the issue, just by itterating through the Object key's and values's, Thanks --- In flexcoders@yahoogroups.com, yossi.baram yossi.ba...@... wrote: Hi helper, I Have a class in java and one of its properties is: private MapString,UpperlColumnHeader upperColumnHeaders

[flexcoders] Seperate Parent Field Hirarchy Field in AdvancedDataGrid

2009-03-03 Thread yossi.baram
Hi, I am creating a TreeGrid using the AdvancedDataGrid in Flex 3. The function that build my group columns is : private function setGroupedColumns():void { var groupingCollection:GroupingCollection=new GroupingCollection() var

[flexcoders] Re: Seperate Parent Field Hirarchy Field in AdvancedDataGrid

2009-03-03 Thread yossi.baram
Please help --- In flexcoders@yahoogroups.com, yossi.baram yossi.ba...@... wrote: Hi, I am creating a TreeGrid using the AdvancedDataGrid in Flex 3. The function that build my group columns is : private function setGroupedColumns():void { var

[flexcoders] Lazy loading in AdvancedDataGrid using RemoteObject

2009-03-05 Thread yossi.baram
Hi guys, I am strugeling to figure out lazy loading in my AdvancedDataGrid. I didnt find any relevant document on that. If I'm using ItemRenderer for my columns to do manipulation on the data, it is executed when I click on the grouped (branch )column. This is good if I ahve a dataprovider with

[flexcoders] Re: Lazy loading in AdvancedDataGrid using RemoteObject

2009-03-06 Thread yossi.baram
sec it collapse. WHY??? Can i use your code to make all better? Thanks a lot for all your help, really Jo --- In flexcoders@yahoogroups.com, Amy amyblankens...@... wrote: --- In flexcoders@yahoogroups.com, yossi.baram yossi.baram@ wrote: Hi guys, I am strugeling to figure out lazy loading

[flexcoders] Re: Lazy loading in AdvancedDataGrid using RemoteObject

2009-03-06 Thread yossi.baram
one more thing, AdvancedDataGrid doesnt support DataDescriptor... --- In flexcoders@yahoogroups.com, yossi.baram yossi.ba...@... wrote: wow Amy, Some of your articles helped me a lot, realy thanks you:) Now I looked at your example and using AdvacedDataModel with RmoteObject, getting

[flexcoders] Re: Lazy loading in AdvancedDataGrid using RemoteObject

2009-03-07 Thread yossi.baram
columns, the childrens data is not always plain value. Thanks again :) Jo --- In flexcoders@yahoogroups.com, Amy amyblankens...@... wrote: --- In flexcoders@yahoogroups.com, yossi.baram yossi.baram@ wrote: one more thing, AdvancedDataGrid doesnt support DataDescriptor... Yes. You asked about

[flexcoders] Re: Lazy loading in AdvancedDataGrid using RemoteObject

2009-03-08 Thread yossi.baram
Thanks Amy :)) --- In flexcoders@yahoogroups.com, Amy amyblankens...@... wrote: --- In flexcoders@yahoogroups.com, yossi.baram yossi.baram@ wrote: Thanks Amy for your help, I'm going your way:), only one question if i may, Is it possible to activate ItemRenderer on my columns after

[flexcoders] Creating style for AdvancedDataGridColumn that dded dynamically

2009-03-18 Thread yossi.baram
Hi, I have an AdvancedDataGrid and I add its columns dynamically(with new instanciate). I created a css file and I control the DataGrid, but for the columns it doesnt respond, why? /* CSS file */ AdvancedDataGrid { verticalGridLines: true; horizontalGridLines: true; border-style: none;

[flexcoders] row colors in AdvancedDataGrid

2009-03-18 Thread yossi.baram
Hi helper, In Adobe developer guid in all examples of treeGrid every second row has a background greyed color http://livedocs.adobe.com/flex/3/html/help.html?content=advdatagrid_10.html I need the same thing, 2 colors alternatly, How do I do it? Thanks Jo

[flexcoders] Re: row colors in AdvancedDataGrid

2009-03-18 Thread yossi.baram
...@... wrote: You can go and see for the style property of AdvancedDataGrid alternatingItemColors. http://livedocs.adobe.com/flex/3/langref/mx/controls/AdvancedDataGrid.html On Thu, Mar 19, 2009 at 7:00 AM, yossi.baram yossi.ba...@... wrote: Hi helper, In Adobe developer guid in all

[flexcoders] Re: row colors in AdvancedDataGrid

2009-03-19 Thread yossi.baram
althogh I set width to 100% Why is that? Thanks man --- In flexcoders@yahoogroups.com, Romeo Obane ro...@... wrote: You mean changing the Application's or Data Grid default background? On Thu, Mar 19, 2009 at 1:28 PM, yossi.baram yossi.ba...@... wrote: Greate man :) I missed

[flexcoders] Re: row colors in AdvancedDataGrid

2009-03-19 Thread yossi.baram
, but it does occupy the whole width and height of my application space. Did you placed your grid inside the container aside of the main application itself? Maybe if you could share some of the codes that could help me understand more. On Thu, Mar 19, 2009 at 2:57 PM, yossi.baram yossi.ba

[flexcoders] Re: row colors in AdvancedDataGrid

2009-03-19 Thread yossi.baram
; } ]] /mx:Script mx:AdvancedDataGrid height=100% columns={getCols()}/ /mx:Application On Thu, Mar 19, 2009 at 5:16 PM, yossi.baram yossi.ba...@... wrote: Hey, It is fixed when the grid is loded... So, what do you think, Can we set the app and the grid to be matched in size

[flexcoders] Re: row colors in AdvancedDataGrid

2009-03-19 Thread yossi.baram
to be flexible of the app width, BUT if it's dynamic (depends on the data size), it could be more tricky since the grid column usually don't have percent width. On Thu, Mar 19, 2009 at 3:45 PM, yossi.baram yossi.ba...@... wrote: Hi, I miss led you a bit, I use a css and I can eliminate

[flexcoders] Activate ItemRenderer in AdvancedDataGrid

2009-03-20 Thread yossi.baram
Hi helper, I have an Hirarchy data grid, I actualy took the adobe sample http://inovativeflexdevolopment.blogspot.com/ What is does is creating ObjectHierarchicalData that implements IHierarchicalData. the dataprovider is set accordingly and all looks great. In my grid I can see the parents and

[flexcoders] Using ItemRenderer with IHierarchicalData DataProvider

2009-03-22 Thread yossi.baram
Hi, There is a greate example in the following link that allows us to create simple hirarchical grid with AdvancedDataGrid, implementing IHierarchicalData. http://inovativeflexdevolopment.blogspot.com/2008/07/flex3-dynamic-population-of-data-in.html I couldnt find a way to include ItemRenderer

[flexcoders] Re: Using ItemRenderer with IHierarchicalData DataProvider

2009-03-22 Thread yossi.baram
to manipulate and show ALL branches? Please advice guys, I have been looking every where but couldnt find a solution. Thanks in advance --- In flexcoders@yahoogroups.com, yossi.baram yossi.ba...@... wrote: Hi, There is a greate example in the following link that allows us to create simple

[flexcoders] Re: Using ItemRenderer with IHierarchicalData DataProvider

2009-03-23 Thread yossi.baram
Guys, There mast be somebody knows how to preserve hierarchy and to allow the TreeGrid to look the same with parents and childrens, using the ItemRenderer Sorry for the resending the question. I realy need a clue here, Thanks --- In flexcoders@yahoogroups.com, yossi.baram yossi.ba

[flexcoders] Re: Using ItemRenderer with IHierarchicalData DataProvider

2009-03-23 Thread yossi.baram
not understud Thanks for your help man --- In flexcoders@yahoogroups.com, Wesley Acheson wesley.ache...@... wrote: Sorry I'm not really understanding. Are you saing that you want all children nodes automatically expanded?- On Mon, Mar 23, 2009 at 8:55 AM, yossi.baram yossi.ba...@... wrote

[flexcoders] Re: Using ItemRenderer with IHierarchicalData DataProvider

2009-03-23 Thread yossi.baram
recipient please contact is.helpd...@... From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of yossi.baram Sent: 23 March 2009 08:58 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Using ItemRenderer

[flexcoders] Re: Using ItemRenderer with IHierarchicalData DataProvider

2009-03-23 Thread yossi.baram
contact is.helpd...@... From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of yossi.baram Sent: 23 March 2009 09:30 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Using ItemRenderer with IHierarchicalData DataProvider

[flexcoders] Re: Using ItemRenderer with IHierarchicalData DataProvider

2009-03-23 Thread yossi.baram
The link I sent may be incorrect, look at http://inovativeflexdevolopment.blogspot.com/ (Flex3 Dynamic population of data in Advanced datagrid with customn header...) example --- In flexcoders@yahoogroups.com, yossi.baram yossi.ba...@... wrote: It make sense what you asked, Yes it looks good

[flexcoders] Re: Using ItemRenderer with IHierarchicalData DataProvider

2009-03-23 Thread yossi.baram
or any of its affiliates. If you are not the intended recipient please contact is.helpd...@... From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of yossi.baram Sent: 23 March 2009 09:57 To: flexcoders@yahoogroups.com Subject

[flexcoders] Re: Using ItemRenderer with IHierarchicalData DataProvider

2009-03-23 Thread yossi.baram
Hi Gregor, Dont want to bother, but I'll do a little :) Any success with what I sent? --- In flexcoders@yahoogroups.com, yossi.baram yossi.ba...@... wrote: Sure, This is the example I'm based on, you can just copy/paste to a new project and it should work... temp1.mxml: mx:Application

[flexcoders] Re: Using ItemRenderer with IHierarchicalData DataProvider

2009-03-23 Thread yossi.baram
of course : Jo --- In flexcoders@yahoogroups.com, Amy amyblankens...@... wrote: --- In flexcoders@yahoogroups.com, yossi.baram yossi.baram@ wrote: Thanks, Well, I tried extending AdvancedDataGridItemRenderer IDropInListItemRenderer Try reading my series on how to make AdvancedDataGrid

[flexcoders] Re: Using ItemRenderer with IHierarchicalData DataProvider

2009-03-23 Thread yossi.baram
that, produce my problem again not showing the hierarchy :( Is there a way to put the renderer in AdvancedDataGrid tag and still use the ClassFactory to send proerties?? Thanks --- In flexcoders@yahoogroups.com, Amy amyblankens...@... wrote: --- In flexcoders@yahoogroups.com, yossi.baram

[flexcoders] using lockedColumnCount doesnt freez my column..

2009-03-26 Thread yossi.baram
Hi, I set lockedColumnCount=1 in my AdvancedDataGrid tag and I can see the first column is marked with vertical line but when I Horizontally scroll its not freeded and remains inplace :( The first column dissapear with the rest of the other columns, What am I doing wrong? Thanks Jo

[flexcoders] Re: using lockedColumnCount doesnt freez my column..

2009-03-26 Thread yossi.baram
, 118902) I hope this will be working in the new version. Thank you George --- In flexcoders@yahoogroups.com, yossi.baram yossi.baram@ wrote: Hi, I set lockedColumnCount=1 in my AdvancedDataGrid tag and I can see the first column is marked with vertical line but when I Horizontally

[flexcoders] Can I set specific AdvancedDataGridColumn to be draggable false?

2009-03-31 Thread yossi.baram
Hi, We have the draggableColumns attribute that disable/enable dragging for all columns in an AdvancedDataGrid, Can i set it to be false for specific columns and true for the rest? Thanks guys Jo

[flexcoders] Re: Can I set specific AdvancedDataGridColumn to be draggable false?

2009-04-01 Thread yossi.baram
Does anybody knows if a specific ADvancedDataGridColumn can be freezed? not using lockedColumnCount, because it doesnt work for me :( Thanks --- In flexcoders@yahoogroups.com, Tom Chiverton tom.chiver...@... wrote: On Tuesday 31 Mar 2009, yossi.baram wrote: columns in an AdvancedDataGrid

[flexcoders] Dynamicaly shrink expand flex application

2009-05-11 Thread yossi.baram
Hi helper, Can I set my DataGrid to dynamicaly shrink expand as the browser changes its width? The flex engine expect width height in pixels when building the swf and not in %, thats what makes the swf static size, Can I make the swf to be of percentage size in the page? Thanks Jo

[flexcoders] Re: Dynamicaly shrink expand flex application

2009-05-12 Thread yossi.baram
some javascript. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of yossi.baram Sent: Monday, May 11, 2009 4:19 AM To: flexcoders@yahoogroups.com Subject: [flexcoders

[flexcoders] Re: Dynamicaly shrink expand flex application

2009-05-12 Thread yossi.baram
I think the problem is that the AdvancedDataGrid set its columns width to 100px by default. I add my columns dynamically using AdvancedDataGridColumn, Can I sett some columns to be percentage width and some not? Thanks --- In flexcoders@yahoogroups.com, yossi.baram yossi.ba...@... wrote

[flexcoders] UIComponent doesnt catch TOOLTIP event

2009-05-13 Thread yossi.baram
Hi, My Tree Table renderer extends UIComponent. I cannot catch the Tooltip event by using component.addEventListener(ToolTipEvent.TOOL_TIP_CREATE,tooltipDetailCreate); why? this is part of the data my renderer override: (myComponent is a class that extends UIComponent) public function set

[flexcoders] Sorting in AdvancedDataGrid happens only once, please help

2009-06-01 Thread yossi.baram
Hi guys, My AdvancedDataGrid shows a tree, I set sortableColumns=true sortExpertMode=true, But when I click on one of the columns, they are sorted in descending way, when I click again - Nothing happens, Why Why doesnt the default sorting work in my AdvancedDataGrid? Do I need a custom

[flexcoders] Re: Sorting in AdvancedDataGrid happens only once, please help

2009-06-01 Thread yossi.baram
Did any one came across this scenario? :( --- In flexcoders@yahoogroups.com, yossi.baram yossi.ba...@... wrote: Hi guys, My AdvancedDataGrid shows a tree, I set sortableColumns=true sortExpertMode=true, But when I click on one of the columns, they are sorted in descending way, when I click