[flexcoders] All the bunch of idiots at Adobe, please note!

2006-04-17 Thread t_msreddy
I wanted to share this aweful story to this group. Over months we have been trying to get a Flex expert from Adobe to do a code review of our application as a part of our partnership building process. They agreed to do it in person and finally on the day, they sent out an email saying they

[flexcoders] Re: All the bunch of idiots at Adobe, please note!

2006-04-17 Thread t_msreddy
Dave That funny because the mailing system is hiding my email and this is not my personal effort. My email is [EMAIL PROTECTED] and I am Madhu if that is what you are interested in. --- In flexcoders@yahoogroups.com, Dave Carabetta [EMAIL PROTECTED] wrote: On 4/17/06, t_msreddy [EMAIL

[flexcoders] Re: Accessing a custom cellrenderer

2006-03-21 Thread t_msreddy
Look at the code below and try in similar lines in your cellRenderer file: var rowIndex : Number;var columnIndex : Number;var getCellIndex : Function; // the function we receive from the listvargetDataLabel : Function; // the function we receive from the listfunction setValue( str:String,

[flexcoders] Re: Google Finance in AJAX: Can we do this in Flex?

2006-03-21 Thread t_msreddy
PROTECTED] wrote: By writing custom componentsI am sure you can do the same in Flex may be more easily.. -abdul On 3/21/06, t_msreddy [EMAIL PROTECTED] wrote: I just learnt about Google Finance. I think they implemented in AJAX URL: http://finance.google.com/finance?q

[flexcoders] Re: Dynamic Generation of DataGridColumns + rowRenderer

2006-03-21 Thread t_msreddy
I have some sample code in 1.5: public static function buildPhasesDataGridColumns():Void { Dumper.info("%%% buildPhasesDataGridColumns invoked"); var phasesVOArray : Array = ModelLocator.currentProject.phaseVOArray; ModelLocator.phasesDG.removeAllColumns(); for ( var i:Number=0; i

[flexcoders] Re: Dynamic Generation of DataGridColumns + rowRenderer

2006-03-21 Thread t_msreddy
tor, is that a utlity that you have created to locate a component by it's ID? What/when do you hook into this method to set the columns on the datagrid? i assume it needs to be done before the data is actually loaded into it? thanks! --- In flexcoders@yahoogroups.com, "t_msreddy" t_msreddy@

[flexcoders] Re: Cairgnorm beta release?

2006-03-21 Thread t_msreddy
If both do the same why do you want to do this. If this is only for learning purposes, one way is to save the references of your views in ModelLocator (during initialize) and then assign those references to the selectedChild. --- In flexcoders@yahoogroups.com, Oriol Gual [EMAIL PROTECTED]

[flexcoders] Flex2.0 with OpenAMF

2006-03-20 Thread t_msreddy
Anyone really tried OpenAMF with Flex 2.0. Can you please share some code samples or links? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To

[flexcoders] Flex 2.0 Builder Problem - migration from 1.5

2006-03-20 Thread t_msreddy
I am trying to migrate my application in Flex 1.5 to Flex 2.0. I did the following: 1. Created a new Project in Flex 2.0 builder 2. Imported mxml files/folders 3. Imported AS files/folders 4. Modified all AS files to follow new package convention in 2.0 5. Modified all Void to void for all the

[flexcoders] Flex 2.0 Builder BUG : Flex builder doesnt recognize imported AS classes

2006-03-20 Thread t_msreddy
Flex builder 2.0 doesnt recognize the AS classes if you imported them or try to pasted the files into the project (right click copy files/dir and past in the project) To reproduce this bug: 1. Create a sample project. 2. import the existing AS classes/packages 3. in project MXML do this

[flexcoders] Flex2.0: MXMLC compiler is a big pain during migration from 1.5 to 2.0

2006-03-20 Thread t_msreddy
I am trying to migrate an application that we developed in Flex 1.5 to Flex 2.0. These are the steps I followed: 1. Created a project in Flex 2 builder with empty content. 2. Copied MXML folders/files 3. Copied AS folders/files and Cairngorm 2 packages 4. Modified all my AS files to follow

Re: [flexcoders] Starting a Project Now! FLEX 1.5 or 2.0?

2006-03-19 Thread t_msreddy
Migrating from Flex 1.5 to Flex 2.0 is big pain becuase things changed a lot around lot of things especially around the concept of cellRenderers and CellEditors. Apart from that I would consider these facts: 1. Flex 2.0 does not dependent on Flex server being available. You can use

[flexcoders] Flex2.0 Beta BUG: cellRender/cellEditor

2006-03-16 Thread t_msreddy
I have posted this question many times in the group, but this time I want to put it very clearly so that people notice this problem The BUG isif you cellRenderer implements IDropInListItemRenderer (where you implement set and get listData methods, refer

[flexcoders] Re: Flex2.0 Beta BUG: cellRender/cellEditor

2006-03-16 Thread t_msreddy
PROTECTED] On Behalf Of t_msreddy Sent: Thursday, March 16, 2006 9:59 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex2.0 Beta BUG: cellRender/cellEditor I have posted this question many times in the group, but this time I want to put it very clearly so that people notice this problem The BUG

[flexcoders] Application HotKeys Manager

2006-03-16 Thread t_msreddy
I want to implement a application hotkey/shortcuts manager. I am implementing a manager class which actually listens to keyboard events at the application level. The problem that i noticed was, when the focus is on some component within the application the keyboard events at the application

[flexcoders] Re: Flex2.0 Beta BUG: cellRender/cellEditor

2006-03-16 Thread t_msreddy
exist, so I've just called it this way: this.dispatchEvent(new Event(dataObjectChanged)); Hope this helps... I always hate the It works for me answer, but it does =) good luck, Thunder --- In flexcoders@yahoogroups.com, t_msreddy t_msreddy@ wrote: So I understand

[flexcoders] Re: Flex2.0 Beta BUG: cellRender/cellEditor

2006-03-16 Thread t_msreddy
, t_msreddy t_msreddy@ wrote: I not implementing a cellRenderer as AS class instead i do it in the mxml. In mxml I have set and get listData methods. I no where specify that I am implementing the interface. Ss it not implicit in MXMLs that if it has set and get listData methods

[flexcoders] Re: Flex2.0 Beta BUG: cellRender/cellEditor

2006-03-16 Thread t_msreddy
Manish thanks for your awesome help. The proposed solution works. --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 3/17/06, thunderstumpgesatwork [EMAIL PROTECTED] wrote: Ah, well that explains your problem, unfortunately I'm not sure if or how you can

[flexcoders] Re: rowIndex columnIndex while rendering in Flex 2.0

2006-03-15 Thread t_msreddy
--- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 3/14/06, t_msreddy [EMAIL PROTECTED] wrote: I have the same problem. I need to know rowIndex and columnIndex to populate values in cellrenderer (Please see the code for both below). Also I get the error

[flexcoders] Re: [Flex 1.5] Update ColumnData with new data

2006-03-15 Thread t_msreddy
In flex 1.5 you will have to do that on "change" event in cellRenderer: MyCellRenderer.mxml mx:HBox mx:Script ![CDATA[ function updateDP() { //loop through the dataProvider for DataGrid and setValues. parentDocument.MyDataGrid.executeBinding(); //this may not be required, this will

[flexcoders] Re: rowIndex columnIndex while rendering in Flex 2.0

2006-03-14 Thread t_msreddy
I have the same problem. I need to know rowIndex and columnIndex to populate values in cellrenderer (Please see the code for both below). Also I get the error: -- ReferenceError: Error #1069: Property text not found on WeekHoursCR and there is no default value at

[flexcoders] Re: referencing a datamodel from another component

2006-03-14 Thread t_msreddy
I am not sure if i understand you right, but there is something called parentDocument which allows you to access parentDocuments objects Main mx:Application my:comp1 id=comp1/ my:comp2 id=comp2/ /mx:Application then in comp2.mxml, you can do this: parentDocument.comp1.datamodel to get you

[flexcoders] Re: Named Webservices

2006-03-14 Thread t_msreddy
See the sample code in flex-config.mxml below. --- web-service-proxy !-- all locations may be specified as a URL relative to the web server

[flexcoders] Datagrid how to get access to cellRenderer instance

2006-02-28 Thread t_msreddy
I have a cellRenderer in Datagrid column which has text box and an image. I want to implement focus on tab key. I dont know how to do it. The only way i thought was to get the instance of cell renderer for that cell(itemIndex, columnIndex) and do FocusManager.setFocus

[flexcoders] Implementing setFocus for Datagrid which has cellRender with TextInput field

2006-02-09 Thread t_msreddy
Hi I have a datagrid with a vbox cell renderer which has text box. I want to implement a kind of focus manager to set the focus on TAB key press. Here is what i want: If current focus is in TextField1 in Cell(i,j), pressing the tab key should set the focus on TextField1 in Cell(i, j+1) ...

[flexcoders] How to customize mouse trail

2006-02-02 Thread t_msreddy
Hi I am implementing a drag and drop between two datagrids and I want actually show a trail bacially an image which follows the mouse. movement until you drop it. The standard trail that you see it now when you drag is the actual row details. I want to customize this trail. Can you please tell

[flexcoders] dynamic number of datagrid columns

2006-01-09 Thread t_msreddy
HiI need to implement a datagrid based on user input. User input determines the number of datagrid columns.Can you please tell me how to do this? In all the examples I have seen the grid columns are static though data is rendered through data provider like this:mxataGrid id="datagrid1"

[flexcoders] how to display ruler in mx:Grid

2006-01-06 Thread t_msreddy
I want to display a grid with ruler. Can you please tell me how to do it? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit your group on

[flexcoders] Please advise on how to implement this

2006-01-04 Thread t_msreddy
We are actually working on some application which has a section with the following details: 1. Section should have some kind of a timeline bar as header (like in bar chart, main ticker as weeks and small tickers as days). We want to see the grid as well. 2. Should be able to create multiple

Performance testing Flash-J2EE applications

2005-03-07 Thread t_msreddy
Hi I am trying to test the performance of my application which involves flex mxml, actionscript classes which call backend J2EE code. What are the tools out in the market which allows me to test this similar to the test load test that we do on web applications. I tried OpenSTA but and tried

opening a link in canvas in the same page

2005-02-18 Thread t_msreddy
Hi I have question regarding navigation. The layout of the page I have is, I have header on top, naviagtion bar on the left and body on the left and footer at the bottom. I want the navigation to be an Accordion and each accordion tab has links. When you click the link I want to see the