[flex_india:26368] Check Box issue

2009-11-04 Thread Ravi
Hello Friends, I am using list inwhich i took check box for item renderer, I want to check only one box at a time,suppose i have 4 check box and then if i checked any one then others should be unchecked automatically like Radio button. But i dont want to use radio button . Can anyone please help

[flex_india:26369] Aditya Birla Group interview questions

2009-11-04 Thread prem
Wanted to share some of the questions asked in Aditya Birla Group interview . Appreciate if someone please answers these questions. I am even unsure if these questions are correct or not 1. How to display popup windows without using PopupManager class 2. How to create and dispatch a custom

[flex_india:26370] Re: difference between cairongormevent and event

2009-11-04 Thread Sampath Kumar
Hi, One difference I can think of between Normal Event Cairngorm Evenet is : *Normal Event* *We use dispatchEvent(new Event());* *CairnormEvent* *var myEvt:MyEvent = new MyEvent();* ** *myEvt.dispatch();* Regards Sampath On Wed, Nov 4, 2009 at 9:12 AM, pradeep gorijavolu

[flex_india:26372] urgent help: Tab Through DataGrid

2009-11-04 Thread KC
In my application, I m able to tab through the buttons,textboxes, drop down and the AdvancedDataGrid on the page. But I m unable to tab through the buttons and checkboxes inside the AdvancedDataGrid, which are rendered through itemRenderer. Please let me know whether is it possible or not. If

[flex_india:26371] Flex Print

2009-11-04 Thread amit doshi
Hello Guys, Can any one help me how to print smooth? I am using this code import mx.printing.FlexPrintJob; public function doPrint():void { var printJob:FlexPrintJob = new FlexPrintJob(); if (printJob.start()) {

[flex_india:26374] Re: How change Flex DataGrid Header font (text) color White and row font (text) color Black?

2009-11-04 Thread Vivian Richard
Here is the code try this -- ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:Style DataGrid { color: #00; headerStyleName: mydataGridHeaderStyle; }

[flex_india:26376] Re: Doubt in Flex - Your Help is Really Needed. (Refresh Issues in Flex with IE)

2009-11-04 Thread AshishMishra
You need to change the setting in IE. Since In my application also, this happens for IE only. It works fine with other browsers like Firefox, Chrome, Opera. Only, IE behaves strange. I also tried using all the tags(below) which is used to override the cache settings, but it doesn't work for IE.

[flex_india:26381] Re: can implement constructor in mxml

2009-11-04 Thread saurabh goel
Hi, Flex does't support OverLoading of function and constructor. When u create custom component using MXML than it automatically called constructor. Regards Saurabh Goel On Wed, Nov 4, 2009 at 9:34 AM, pradeep gorijavolu pradeepflex.gr...@gmail.com wrote: Thanx for the information Yes at

[flex_india:26384] Re: decompile swf

2009-11-04 Thread Arindam Mojumder
yes you will, but you have to purches it. You can download the sw from net and can crack it, but it will not work properly. If you purches only then you will get the all options. Through this you can decompile all kind of swf file ( as2, as3,flex). 2009/11/4 Gerald Anto Fernando

[flex_india:26382] Re: Aditya Birla Group interview questions

2009-11-04 Thread manish sankhe
1) create new canvas on top of ur application with height and width equals to application's height and width , also keep the alpha=0 now addchild your popup component on canvas. while removing popup dont forget to remove canvas too :) 5) include following code in to ur .html file script

[flex_india:26377] Re: Flex Print

2009-11-04 Thread sukumar chowdary
Hi , Jus add printJob.printAsBitmap = false; this wil give u smooth print. regards, Sukumar On Wed, Nov 4, 2009 at 12:25 PM, amit doshi amitc...@gmail.com wrote: Hello Guys, Can any one help me how to print smooth? I am using this code import mx.printing.FlexPrintJob;

[flex_india:26383] Re: flex personal websites??

2009-11-04 Thread Andrea Giorgetta
I don't think it's wrong, but it depends. Are you thinking of developing the main part of your website in Flex, or just some small parts? Beware that it's easier to be indexed by search engines when the website is developed using semantic HTML (and CSS). Besides, I think that, maybe, when

[flex_india:26379] Re: graph dataTip

2009-11-04 Thread saurabh goel
Hi Varun, For this u have to use DataTipRenderer. Inside this renderer u can easily get the reference of a particular series on rollover. User Swich case in renderer and populate rendere accordingly. Regards Saurabh Goel On Tue, Nov 3, 2009 at 4:59 PM, Varun Bajaj vb.j...@gmail.com wrote: Hi

[flex_india:26378] Re: urgent help: Tab Through DataGrid

2009-11-04 Thread manish sankhe
i hav posted this problem about 3 months back .its not possible to tab in to the rendered component of datagrid On Wed, Nov 4, 2009 at 3:27 PM, KC kaus.chau...@gmail.com wrote: In my application, I m able to tab through the buttons,textboxes, drop down and the AdvancedDataGrid on the

[flex_india:26380] web flow of cairngroom / TDD vs SDLC

2009-11-04 Thread lakshminarayan k
hi ... any one please help on project flow of cairngroom with flex (as well as architecture ) 2.spring web flow 3.what is diffrence between f ull life cycle in SDLC and TDD (Test driven developent ) thnaks regards l...@ks --~--~-~--~~~---~--~~ You received

[flex_india:26385] Re: How change Flex DataGrid Header font (text) color White and row font (text) color Black?

2009-11-04 Thread edwin . vgwhiz
Thanks Vivian! On Wed, Nov 4, 2009 at 1:49 AM, Vivian Richard kanps...@gmail.com wrote: You can also go to the following link and explore more: http://examples.adobe.com/flex2/consulting/styleexplorer/Flex2StyleExplorer.html On Tue, Nov 3, 2009 at 10:43 PM, Vivian Richard

[flex_india:26386] How to disable radio button?

2009-11-04 Thread mahesh bab
Hi I have radio button and have written click event. Here i have disabled radio button(radibuttonid.enabled=false).It is in disable mode only. But wen i click on radio button the click event will be fired.How to remove that one? Regards D.Mahesh babu

[flex_india:26387] Re: Aditya Birla Group interview questions

2009-11-04 Thread Vaibhav Seth
Answer 2 : Proof of Concept Make a separate MyEvent class with the property type in it, you can also add more. Make a singleton class, take an array or Dictionary variable (eventMap). Define three functions. dispatchEvent(obj:Object):void { var handlers:Array = eventMap[obj.type];

[flex_india:26388] Re: Aditya Birla Group interview questions

2009-11-04 Thread Vaibhav Seth
Answer 4: I am not sure whether this is the correct answer or not, but Module can also be treated like a RSL.In one module you can make just common components and can refer them in other modules. And each module is .swf in itself, so logically, it can be treated as a RUN time library. On Wed,

[flex_india:26389] Scanning documents from Flex

2009-11-04 Thread Madan Narra
Hi All, I was having a requirement of scanning documents from my Flex Web Application. I believe this couldn't be done.. But wanted to ask the forum if any one could help me out invoking scanner from flex.. Here is my plan of action if this couldnt be achieved by Flex. Our application is

[flex_india:26390] Re: Singleton Pattern Questions

2009-11-04 Thread Kiran Kumar Vasireddy
Thanks Vaibhav and Andrea for your suggestions. Andrea : You suggestion looks working , But got in one more problem . Could you please help me ? If I call SingletonXML.getInstance().data; It is returning Null because the of getResult() is returning the data later . Since the calls are

[flex_india:26391] Re: Scanning documents from Flex

2009-11-04 Thread Vaibhav Seth
Check out if some JS plugin can do it for you and you can then use ExternalInterface to communicate with JS from flex application. On Wed, Nov 4, 2009 at 11:25 AM, Madan Narra madan.flexj...@gmail.comwrote: Hi All, I was having a requirement of scanning documents from my Flex Web

[flex_india:26392] Re: Singleton Pattern Questions

2009-11-04 Thread Vaibhav Seth
To avoid such kind of issues, better use Cairngorm. I doubt the problem is Binding. You have to bind data with the dataprovider of your component. So that, whenever your data will get populated it will be reflected in the component. Try using: [Bindable]private var _data:XMLList;

[flex_india:26393] How to add a RSS Feed In Flex 3.0

2009-11-04 Thread edwin . vgwhiz
Hi Team, How can I add an RSS feed to an application in Flex 3.0 Can someone help me or send some existing code that I can modify? I appreciate the help. Edsaid --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Flex

[flex_india:26394] Re: Singleton Pattern Questions

2009-11-04 Thread Kiran Kumar Vasireddy
Hi Vaibhav, Sorry no use ,still not working . Regards Kiran On Wed, Nov 4, 2009 at 12:38 PM, Vaibhav Seth seth.vaibhav...@gmail.comwrote: To avoid such kind of issues, better use Cairngorm. I doubt the problem is Binding. You have to bind data with the dataprovider of your component. So