Re: [flex_india:29315] issue with Number Data type

2010-03-23 Thread Arindam Dhar
Is it mandatory that getMaxValue() has to return a Number ? If not and ur ultimate goal is to populate txtOutput.text u can return a string , private function getMaxValue():String{ return 9.9; } just a thought. regards, A. On Fri, Mar 19, 2010

Re: [flex_india:29092] Re: BrowserManager setfragment issue

2010-03-11 Thread Arindam Dhar
you are using. On Mar 11, 2:50 pm, Arindam Dhar arin.d...@gmail.com wrote: Hi, i have been trying to update the application browser url using the browserManager setfragment. It works fine when i run/debug the app from flexbuilder, but when I integrate the file with main html app

Re: [flex_india:29094] Re: BrowserManager setfragment issue

2010-03-11 Thread Arindam Dhar
On Thu, Mar 11, 2010 at 16:15, Arindam Dhar arin.d...@gmail.com wrote: The code is pretty simple, in my Application creation complete i instantiate a class, and then call a method the class. The method has this which is very typical of any browserManager implementation, bm:IBrowserManager

Re: [flex_india:29096] Re: BrowserManager setfragment issue

2010-03-11 Thread Arindam Dhar
No luck :-( On Thu, Mar 11, 2010 at 4:46 PM, Akshar Kaul akshar.k...@gmail.com wrote: try bm.init(,); Akshar Kaul On Thu, Mar 11, 2010 at 16:43, Arindam Dhar arin.d...@gmail.com wrote: i thought setFragment adds string starting with #. Anyways ,I have forced # after url but still

Re: [flex_india:28830] :: issue with extended TextInput class ::

2010-02-26 Thread Arindam Dhar
. Sorry for not elaborating the exact scenario earlier. regards. On Fri, Feb 26, 2010 at 1:32 PM, nithya flex nithya4f...@gmail.com wrote: if u are extending textInput class, don't forget call super() method int the cons. just an hint On Fri, Feb 26, 2010 at 12:56 PM, Arindam Dhar arin.d

[flex_india:28839] ADG TextInput itemrenderer issue

2010-02-26 Thread Arindam Dhar
Hi, I have extended a TextInput class. For ex, myTextInput extends Textinput I use this myTextInput as item renderer in a Advanceddatagrid. Now, when I access one myTextInput for a particular row and col,from outside of the grid, i can change its style but when I set properties like

[flex_india:28828] :: issue with extended TextInput class ::

2010-02-25 Thread Arindam Dhar
Hi, I have extended a TextInput class. Fo ex, myTextInput extends Textinput var inputText:myTextInput = new myTextInput(); now when I set the maxChars property , inputText.maxChars =10, its just not working, meaning I am able to enter more than 10 characters. Can anyone kindly tell me where

Re: [flex_india:28701] Re: Accessing a itemrenderer in a cell in ADG

2010-02-21 Thread Arindam Dhar
use labelfunction or Style function and write some condition to change property. Ravi On Wed, Feb 17, 2010 at 5:26 PM, Arindam Dhar arin.d...@gmail.com wrote: Hi, I have a editable AdvancedDataGrid, with x rows and y columns. Each cell has itemrenderer. Now, suppose

[flex_india:28615] Accessing a itemrenderer in a cell in ADG

2010-02-17 Thread Arindam Dhar
Hi, I have a editable AdvancedDataGrid, with x rows and y columns. Each cell has itemrenderer. Now, suppose at some event,say, button click , i want to target the itemrenderer object in ,for ex., row 1 , col 2 and change some property of the same, how do I address the same? I could find out

Re: [flex_india:28617] Accessing a itemrenderer in a cell in ADG

2010-02-17 Thread Arindam Dhar
at 5:26 PM, Arindam Dhar arin.d...@gmail.com wrote: Hi, I have a editable AdvancedDataGrid, with x rows and y columns. Each cell has itemrenderer. Now, suppose at some event,say, button click , i want to target the itemrenderer object in ,for ex., row 1 , col 2 and change some property

Re: [flex_india:28620] Re: Accessing a itemrenderer in a cell in ADG

2010-02-17 Thread Arindam Dhar
Thanks, but I am afraid it does not answer the issue I highlighted :-( On Wed, Feb 17, 2010 at 5:44 PM, Akshar akshar.k...@gmail.com wrote: on button click modify the data provider for the datagrid. On Feb 17, 5:10 pm, Arindam Dhar arin.d...@gmail.com wrote: Hi, Actually the requirement

Re: [flex_india:27013] Problem with Flex Builder

2009-12-03 Thread Arindam Dhar
@ravi, After creating a new flex project,when u first build the project u i will see all the necessary files created in the bin-debug folder including the wrapper html file. When you say Earlier it was working fine i presume u had html earlier. If u had try to clean the project it will generate

[flex_india:26954] :: DateTimeAxis parseFunction issue ::

2009-12-01 Thread Arindam Dhar
Hi, I have a linechart which uses DateTimeAxis to format the horizontal axis I send a Date object to parseFunction property of DateTimeAxis and set dataUnits=months.. For a Date being passed in format 2009,5,25( ,M,DD) , it gets displayed in horizontal axis as 5/09. *Now, I don't want it

[flex_india:26499] Re: // advanceddatagridcolumn header renderer query //

2009-11-08 Thread Arindam Dhar
...@gmail.com wrote: you can have the varriable declaried in the parent app , and refer it with outerDocument.variable name google it ,there are plenty of examples. :-) Dinukx On Thu, Nov 5, 2009 at 12:18 PM, Arindam Dhar arin.d...@gmail.com wrote: Hi, I have a header renderer class