Re: [flexcoders] Need array example

2008-06-13 Thread jitendra jain
Use mx.utils.ObjectUtil class, this ObjectUtil has the method copy that will allow u to create a new array with the same values. var arrayCopy=(ArrayCollection)ObjectUtil.copy(arraycollection); Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798 - Original Message

Re: [flexcoders] LCDS gets Killed !!!

2008-06-13 Thread jitendra jain
Chitra, If ur trying to run an exe from Java then it will run on Server. Well u can call the servlet from flex using HttpService(In flex). Put all the stuff inside the service method of the servlet. Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798 - Original

Re: [flexcoders] Strange behavior with array filter function

2008-06-13 Thread jitendra jain
U r trying to compare the references instead of actual values. Try to compare the actual values and not the references Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798 - Original Message From: donvoltz <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.co

Re: [flexcoders] Strange behavior with array filter function

2008-06-13 Thread jitendra jain
=== and !== operators to verify that both comparison objects are of the same type, with the same content: Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798 - Original Message From: donvoltz <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Saturday, J

Re: [flexcoders] Help with ViewStack Event Listeners for Custom Components

2008-06-27 Thread jitendra jain
instead of vwChart.selectedIndex=0 make it vwchart.selectedChild=lgch . It will work Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798 - Original Message From: Craig <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Saturday, June 28, 2008 10:00

Re: [flexcoders] How to set up Flex builder 3 with LCDS 2.5?

2008-07-03 Thread jitendra jain
Go to this link http://amitonflex.blogspot.com/search/label/Flex%20Builder%203  Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798 - Original Message From: Sherif Abdou <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Thursday, July 3, 2008 10:50:15 AM S

Re: [flexcoders] blazeds-turnkey doen't work?

2008-07-03 Thread jitendra jain
set JAVA_HOME= D:\Program Files\Java\jdk1. 5.0_15 Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798 - Original Message From: markflex2007 <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Friday, July 4, 2008 10:50:18 AM Subject: [flexcoders] blazeds-t

Re: [flexcoders] Re: textarea with auto height

2008-07-15 Thread jitendra jain
change autoLayout=false Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798 - Original Message From: prashant194 <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, July 15, 2008 7:06:59 AM Subject: [flexcoders] Re: textarea with auto height

[flexcoders] How to do flex profiling in Eclipse?

2008-07-17 Thread jitendra jain
Hi friends, Can anyone help me how to do Flex profiling using eclipse??? Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798

[flexcoders] FilterFunction is throwing an error #1069

2008-07-28 Thread jitendra jain
mboBase/updateDisplayList() at mx.controls::ComboBox/updateDisplayList() Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798

[flexcoders] FilterFunction is throwing an error #1069

2008-07-28 Thread jitendra jain
mboBase/updateDisplayList() at mx.controls::ComboBox/updateDisplayList() Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798

Re: [flexcoders] Help me

2008-08-04 Thread jitendra jain
Use itemEditEnd Event of DataGrid instead of FocusOut event.  Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798 - Original Message From: poorni_agile <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Monday, August 4, 2008 4:57:26 PM Subject: [flexcoders

Re: [flexcoders] Design Patters For Loading Data?

2008-08-12 Thread jitendra jain
 Why don't u go for Cairngorm Framework that is perfectly designed for this purposeThanks, with Regards, Jitendra Jain Software Engineer - Original Message From: nwebb <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, August 12, 2008 5:07:47

[flexcoders] KeyEvent in Application and in component

2008-08-21 Thread jitendra jain
ldern. Please help!!! Thanks, with Regards, Jitendra Jain

Re: [flexcoders] KeyEvent in Application and in component

2008-08-21 Thread jitendra jain
Thanks Alex, '+' and '-' keys . How would i enforce the browser to stop eating those ?? Thanks, with Regards, Jitendra Jain - Original Message From: Alex Harui <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Friday, August 22, 2008 11:55:26 A

[flexcoders] Repeater Component

2008-08-27 Thread jitendra jain
. Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798

[flexcoders] BindingUtils, How to detect null values when the data type is Number???

2008-08-31 Thread jitendra jain
odLot[i],"text"); BindingUtils.bindProperty(allItemList[i],"rawQty",txtRawLot[i],"text"); Everything works fine. But when my TextInput having no data that is empty, it binds zero values. How can I stop that?? When Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798

Re: [flexcoders] [Bindable] is not getting updated..

2008-09-21 Thread jitendra jain
Hi, Instead of this use BindingUitls.bindProperty(this,"xyz",MyModel,getInstance().someVar); This statement is called in the creationComplete of the component. Cheers it will work..  Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798 - Original Message

Re: [flexcoders] [Bindable] is not getting updated..

2008-09-21 Thread jitendra jain
sorry, use this BindingUtils.bindProperty(this,"xyz",MyModel.getInstance,"someVar");  Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798 - Original Message From: jitendra jain <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Monda

Re: [flexcoders] [Bindable] is not getting updated..

2008-09-23 Thread jitendra jain
ox . I used this statement in creation complete So whenever my combo box selected item changes , it automatically binds into the TextInput Control. Let me know your view and also if possible paste some part of the code. Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798 - Or

Re: [flexcoders] [Bindable] is not getting updated..

2008-09-23 Thread jitendra jain
Instead of ProgramModel.getInstance(), use ProgramModel.getInstance Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798 - Original Message From: Manu Dhanda <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Wednesday, 24 September, 2008 7:52:35 AM Subje

Re: [flexcoders] [Bindable] is not getting updated..

2008-09-23 Thread jitendra jain
 Make sure ProgramModel is also BindableThanks, with Regards, Jitendra Jain Software Engineer 91-9979960798 - Original Message From: jitendra jain <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Wednesday, 24 September, 2008 9:17:14 AM Subject: Re: [flexcoders] [Bi

Re: [flexcoders] [Bindable] is not getting updated..

2008-09-23 Thread jitendra jain
Hi Manu, may be your pm.woCalSelectedDay is not updated. Please check it first ... Because iam damn sure it will work .  Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798 - Original Message From: Manu Dhanda <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.co

Re: [flexcoders] Refreshing a custom component just after sending datas.

2008-09-24 Thread jitendra jain
Add IResponder interface  Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798 - Original Message From: quantum_ohm <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Wednesday, 24 September, 2008 4:31:16 PM Subject: [flexcoders] Refreshing a custom com

Re: [flexcoders] Re: Listen itemClick on MenuBar

2008-09-24 Thread jitendra jain
public function menuHandler(MenuEvent : event){ if(Sting(event.item,@label== "File"){ //Dispatch Event } This will help Thanks, with Regards, Jitendra Jain - Original Message From: Tim Hoff <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Wednesday, 24 S

Re: [flexcoders] Re: Listen itemClick on MenuBar

2008-09-24 Thread jitendra jain
sorry it is  Thanks, with Regards, Jitendra Jain - Original Message From: jitendra jain <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Thursday, 25 September, 2008 9:48:49 AM Subject: Re: [flexcoders] Re: Listen itemClick on MenuBar public function menuHandler( Men

Re: [flexcoders] Cairngorm Update Problem

2008-09-24 Thread jitendra jain
Either you need to call the ViewStack.callLater(FunctionName)  Thanks, with Regards, Jitendra Jain - Original Message From: c_higgon <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Thursday, 25 September, 2008 4:15:10 AM Subject: [flexcoders] Cairngorm Update Problem

Re: [flexcoders] BlazeDS Integration

2008-09-24 Thread jitendra jain
Where you have put the services-config.xml,remoting-config.xml etc files?  Thanks, with Regards, Jitendra Jain - Original Message From: Patrick McDaniel <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Thursday, 25 September, 2008 4:16:56 AM Subject: [flexcoders] B

Re: [flexcoders] BlazeDS Integration

2008-09-24 Thread jitendra jain
Also there is no servlet mapping for swf or mxml . what you type in the address bar of the browser?  Thanks, with Regards, Jitendra Jain - Original Message From: jitendra jain <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Thursday, 25 September, 2008 11:40:07 AM S

Re: [flexcoders]Convert a Java object to an ActionScript object

2008-09-24 Thread jitendra jain
[RemoteClass(alias="com.test.C")] public class C { public var testVar1:Number; public var testVar2:String; }  Thanks, with Regards, Jitendra Jain - Original Message From: Eduardo Souza <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Thursday, 25 Septemb

Re: [flexcoders] Re: Using IResponder without Cairngorm

2008-09-25 Thread jitendra jain
et me know. This can be easily done with Cairngorm framework.. Thanks, with Regards, Jitendra Jain - Original Message From: quantum_ohm <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Thursday, 25 September, 2008 2:25:30 PM Subject: [flexcoders] Re: Using IResponder w

Re: [flexcoders] Re: Using IResponder without Cairngorm

2008-09-25 Thread jitendra jain
); } else if ( evt.result == 1 ) { dispatchEvent( new Event("INVISIBLE_EVENT") ); } } with Regards, Jitendra Jain - Original Message From: quantum_ohm <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Thursday, 25 September, 2008 3:30:29 PM Subject: [flexco

Re: [flexcoders] Re: Using IResponder without Cairngorm

2008-09-25 Thread jitendra jain
why you can't do this var nm : NewsManager= new NewsManager(Vb_news); Thanks, with Regards, Jitendra Jain - Original Message From: quantum_ohm <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Thursday, 25 September, 2008 4:10:04 PM Subject: [flexcoders] Re: Using

Re: [flexcoders] Re: Using IResponder without Cairngorm

2008-09-25 Thread jitendra jain
Either try main.mxml to listen the VISIBLE_EVENT you are firing and put those methods in it. Thanks, with Regards, Jitendra Jain - Original Message From: quantum_ohm <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Thursday, 25 September, 2008 4:37:00 PM S

Re: [flexcoders] Re: What is equivalent of HttpServletRequest request & HttpServletResponse response object in mxml

2008-09-29 Thread jitendra jain
If you need to pass request parameters to a servlet use flash.net.URLVariables and flash.net.URLRequest Hope this might be helpful to you.  Thanks, with Regards, Jitendra Jain - Original Message From: Tracy Spratt <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Mond

Re: [flexcoders] mx:PopUpMenuButton drop down menu looks blurd when wmode is opaque

2008-09-29 Thread jitendra jain
Google Chrome needs to be more mature. Please avoid using Google Chrome. Try with IE7 . Don't waste your time with Google Chrome  Thanks, with Regards, Jitendra Jain - Original Message From: Jonathan Lee <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Sunday, 2

Re: [flexcoders] Rich Text Editor Problem

2008-09-29 Thread jitendra jain
If possible, please paste some code .. Thanks, with Regards, Jitendra Jain - Original Message From: jainleena82 <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Monday, 29 September, 2008 4:17:03 PM Subject: [flexcoders] Rich Text Editor Problem Hi, I am using

Re: [flexcoders] Word wrap doesn't work with a dynamically loaded font.

2008-09-29 Thread jitendra jain
Have u used wordWrap ="true" of TextArea control?? Thanks, with Regards, Jitendra Jain - Original Message From: Rob Kunkle <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Monday, 29 September, 2008 4:57:55 PM Subject: [flexcoders] Word wrap doesn't wo

Re: [flexcoders] Re: Word wrap doesn't work with a dynamically loaded font.

2008-09-29 Thread jitendra jain
Use this properties of TextArea control verticalScrollPolicy=" horizontalScrollPolicy="off" off"Thanks, with Regards, Jitendra Jain - Original Message From: Rob Kunkle <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Monday, 29 September, 2008 7:44:

Re: [flexcoders] URLRequest, ByteArray, and the 0 byte

2008-09-29 Thread jitendra jain
All the request data that is send is String.  Thanks, with Regards, Jitendra Jain - Original Message From: Troy Gilbert <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, 30 September, 2008 9:03:14 AM Subject: Re: [flexcoders] URLRequest, ByteArray, and the

Re: [flexcoders] URLRequest, ByteArray, and the 0 byte

2008-09-29 Thread jitendra jain
If you are using Java as server side , then this string need to be converted into bytes and then send it to the ServletInputStream. Might this will be help.  Thanks, with Regards, Jitendra Jain - Original Message From: jitendra jain <[EMAIL PROTECTED]> To: flexcoders@yahoogrou

Re: [flexcoders] Problem referring to TextInput in itemRenderer

2008-09-29 Thread jitendra jain
Try itemEditEnd event  of data grid. This event is fired when the data is edited and the user is about to lose the  focus. Now in this event try to do whatever validation you need to do and if the data is not valid, call event.preventDefault()   Thanks, with Regards, Jitendra Jain

Re: [flexcoders] How to stop the updateDisplay event propagation?

2008-09-30 Thread jitendra jain
Provide with some test code..  Thanks, with Regards, Jitendra Jain - Original Message From: Manu Dhanda <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, 30 September, 2008 2:25:00 PM Subject: [flexcoders] How to stop the updateDisplay event propagation? Hi,

Re: [flexcoders] Debug mode or normal mode?

2008-09-30 Thread jitendra jain
the context menu has option debugger. From this u can know that flash player supports debugging. Let me know your more questions if any..  Thanks, with Regards, Jitendra Jain - Original Message From: Manu Dhanda <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesd

Re: [flexcoders] determine if image source exists

2008-09-30 Thread jitendra jain
Use Embed keyword that will help embedding the image in a class while compiling.[Embed("assets/status.png")] private var status:Class;Thanks, with Regards, Jitendra Jain - Original Message From: bhaq1972 <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesd

Re: [flexcoders] determine if image source exists

2008-09-30 Thread jitendra jain
Yes, Paul you are absolutely right. Please take a note of this while handling with images specially dealing with Embed keyword.  Thanks, with Regards, Jitendra Jain - Original Message From: Paul Andrews <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Sent: Tuesday, 30 September, 200

Re: [flexcoders] URLRequest, ByteArray, and the 0 byte

2008-09-30 Thread jitendra jain
, the object is converted to a string, and the string is used as the POST or GET data.  Thanks, with Regards, Jitendra Jain - Original Message From: Maciek Sakrejda <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, 30 September, 2008 9:13:51 PM Subject: Re: [flex

[flexcoders] Eclipse not Building

2008-10-05 Thread jitendra jain
Hi Guys,   I have tried of cleaning and building Flex project using Eclipse. I was stunned to see that my debugger points to some commented code. Please help. Cleaning and building doesn't helped me.. If any other way to do it??  Thanks, with Regards, Jitendra Jain Add more frien

Re: [flexcoders] Re: FlexBuilder issue

2008-10-07 Thread jitendra jain
Make sure your library path points to WEB-INF/flex/locale/{locale}  Thanks, with Regards, Jitendra Jain - Original Message From: Greg Morphis <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Monday, 6 October, 2008 11:32:49 PM Subject: [flexcoders] Re: FlexBuilder issu

Re: [flexcoders] Eclipse not Building

2008-10-07 Thread jitendra jain
t i notice this frequently from couple of days.   Thanks, with Regards, Jitendra Jain - Original Message From: Ryan Gravener <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Monday, 6 October, 2008 5:33:51 PM Subject: Re: [flexcoders] Eclipse not Building make sure you s

Re: [flexcoders] handling data within a datagrid

2008-10-07 Thread jitendra jain
Use event.target.selectedItems instead of event.target.selectedItem  Thanks, with Regards, Jitendra Jain - Original Message From: Greg Morphis <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, 7 October, 2008 7:22:23 AM Subject: Re: [flexcoders] handling data wi

Re: [flexcoders] Re: How to make an RPC call secure

2008-10-10 Thread jitendra jain
n(); But whats the real question behind your question? what do you want to load? If you want to secure your calls then try to read J2EE Specs  Thanks, with Regards, Jitendra Jain - Original Message From: Abdul Razak PM <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Satu

Re: [flexcoders] Components and displaying into a new target

2008-10-10 Thread jitendra jain
Application.application will do the trick..  Thanks, with Regards, Jitendra Jain - Original Message From: Scott <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Saturday, 11 October, 2008 10:25:53 AM Subject: [flexcoders] Components and displaying into a new target I’

Re: [flexcoders] Remote calls are not happening using blazeDS in secured environment

2008-10-10 Thread jitendra jain
Hi Venkat,   I'm not sure but I think you need to dig out web.xml for https..   Thanks, with Regards, Jitendra Jain - Original Message From: venkateswarlu naidu <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Saturday, 11 October, 2008 6:13:36 AM Subject: Re:

Re: [flexcoders] Java-like equals() method?

2008-10-10 Thread jitendra jain
In this case you need to use Bindable BindingUtils.bindProperty(myUser,"assignedToUser",combBox,"selectedItem"); if you want to reflect the changes from myUser.assignedToUser to CombBox.selectedItem..  Thanks, with Regards, Jitendra Jain - Original Message

Re: {Disarmed} Re: [flexcoders] Components and displaying into a new target

2008-10-10 Thread jitendra jain
I thought you want to add dynamically to the Accordion control. and it can be done like this application.accordionName. Anyways Great...  Thanks, with Regards, Jitendra Jain - Original Message From: Scott <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Saturday, 11 O

Re: [flexcoders] Re: How to make an RPC call secure

2008-10-12 Thread jitendra jain
me extent we can secure our application. But we can't challenge. Thanks, with Regards, Jitendra Jain - Original Message From: Abdul Razak PM <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Saturday, 11 October, 2008 3:04:54 PM Subject: [flexcoders] Re: How to make

Re: [flexcoders] Re: How to make an RPC call secure

2008-10-13 Thread jitendra jain
string (AMF)to the servlet(I guess) and Servlet converts those into the actual calls. This link will help you how the message is converted: http://livedocs.adobe.com/flex/201/fds2javadoc/flex/messaging/io/amf/ActionMessageInput.html Thanks, with Regards, Jitendra Jain - Original

Re: [flexcoders] Where is Alex Ahauri??

2008-10-14 Thread jitendra jain
Alex's answers rescued me manytimes. I want him to be here in his group as soon as possible to rescue many others .. :)) Thanks, with Regards, Jitendra Jain - Original Message From: Michael Schmalle <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday,

[flexcoders] Where is Alex Ahauri??

2008-10-14 Thread jitendra jain
Hi Alex, So many days we have not witnessed any messages from you... Where are you?? Thanks, with Regards, Jitendra Jain Add more friends to your messenger and enjoy! Go to http://messenger.yahoo.com/invite/

[flexcoders] web compiler

2008-10-17 Thread jitendra jain
Hi coders, My application compiles well and run if i use the generated main.swf or main.html. But when i run the application with main.mxml in the browser, it throws Type was not found or a comile-time error... Thanks, with Regards, Jitendra Jain Send free SMS to your Friends on Mobile from

Re: [flexcoders] web compiler

2008-10-17 Thread jitendra jain
Paul, its Flex 3. Thanks, with Regards, Jitendra Jain - Original Message From: Paul Andrews <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Friday, 17 October, 2008 1:21:03 PM Subject: Re: [flexcoders] web compiler  Jitendra, what version of Flex is this? Flex 2

Re: [flexcoders] web compiler

2008-10-17 Thread jitendra jain
I want to do some load testing and that's why iam using .mxml files. Its Flex 3.1 Thanks, with Regards, Jitendra Jain - Original Message From: Paul Andrews <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Friday, 17 October, 2008 1:21:03 PM Subject: Re: [flex

Re: [flexcoders] Compile error with flex sdk 3.1

2008-10-20 Thread jitendra jain
Your flex build path is not pointing to Flex SDK3.1.0. Replace it if not... Thanks, with Regards, Jitendra Jain From: Pankaj Arora <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Saturday, 18 October, 2008 10:28:05 AM Subject: [flexcoders] C

Re: [flexcoders] Listem to an event sent by a DataGrid ItemRenderer

2008-10-20 Thread jitendra jain
Where is the Timer control ? Which TimerEvent you are listening to .. Thanks, with Regards, Jitendra Jain From: Sébastien Tromp <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Saturday, 18 October, 2008 3:48:39 PM Subject: [flexcoders] Lis

Re: [flexcoders] Refreshing Project

2008-10-20 Thread jitendra jain
Which IDE you are using... If you are using Flex Builder then try to delete bin-debug folder. It will help Thanks, with Regards, Jitendra Jain From: Guilherme Blanco <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, 21 October, 2008

Re: [flexcoders] Refreshing Project

2008-10-20 Thread jitendra jain
May be your browser is using cache. Try to clean it also.. Thanks, with Regards, Jitendra Jain From: jitendra jain <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, 21 October, 2008 11:37:48 AM Subject: Re: [flexcoders] Refreshing P

Re: [flexcoders] Re: Which style name control the color

2008-10-20 Thread jitendra jain
I'm damn sure iconColor will work CheckBox { iconColor: #ff; } Thanks, with Regards, Jitendra Jain From: itdanny2002 <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, 21 October, 2008 8:42:03 AM Subject: [flexcoders] Re:

Re: [flexcoders] Re: Increase in swf size when upgraded to FlexSDK3

2008-10-20 Thread jitendra jain
Shailesh, Read this linkhttp://labs.adobe.com/wiki/index.php/Flex_3:Feature_Introductions:Flex_3_RSLs Thanks, with Regards, Jitendra Jain From: Shailesh Mangal <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, 21 October, 2008 7:42

Re: [flexcoders] Re: Repeater control and custom Component

2008-10-20 Thread jitendra jain
Can u paste some code what are you trying to do. Do this favour.. I want to work on it Please... I have used Repeater component and its the best to use.. Thanks, with Regards, Jitendra Jain From: lysfael <[EMAIL PROTECTED]> To: flex

Re: [flexcoders] Re: How can I make an ItemRenderer on a Datagrid react to a row selection?

2008-10-21 Thread jitendra jain
Use this method and put the stuff inside this function. Here the Object is a row override public function set data(value :Object){ super.data = value; // your code // your code } Thanks, with Regards, Jitendra Jain From: Tim Hoff <[EMAIL PROTECTED]&

Re: [flexcoders] Re: Refreshing Project

2008-10-21 Thread jitendra jain
I noted this issue manytimes while I'm running debugger. Look like it uses cache once debugging is enabled. Your problem got solved or not??  Thanks, with Regards, Jitendra Jain From: fotis.chatzinikos <[EMAIL PROTECTED]> To: flexcoders@yahoogrou

Re: [flexcoders] drag drop invokes click handler of dragged compoent

2008-10-21 Thread jitendra jain
I don't understand your question. How can you start dragging without clicking? Please make it very clear what you want... If possible give an example..  Thanks, with Regards, Jitendra Jain From: prashant194 <[EMAIL PROTECTED]> To: flexcoders@yahoogrou

[flexcoders] Tab Navigator works slow when the tab is selected

2008-10-22 Thread jitendra jain
I have a AdvancedTabNavigator, in which i handle the IndexChangedEvent . I have some shared objects reading from the disk.. Whenever I click on the tabs it is very slow. Why? Thanks, with Regards, Jitendra Jain Add more friends to your messenger and enjoy! Go to http

[flexcoders] web compiler

2008-10-23 Thread jitendra jain
help Thanks, with Regards, Jitendra Jain Add more friends to your messenger and enjoy! Go to http://messenger.yahoo.com/invite/

Re: [flexcoders] web compiler

2008-10-25 Thread jitendra jain
Hey Guys, I solved the problem of web compiler Simply i have to add my library source path in the flex-config files. user_classes Thanks, with Regards, Jitendra Jain From: Paul Andrews <[EMAIL PROTECTED]> To: flex

[flexcoders] ItemRenderes are consuming more memory

2008-10-27 Thread jitendra jain
backgroundcolor I used Profiler and sees that everytime it adds more instances to the list and also memory consumption is rising. Thanks, with Regards, Jitendra Jain Add more friends to your messenger and enjoy! Go to http://messenger.yahoo.com/invite/

[flexcoders] ItemRenderer

2007-11-16 Thread jitendra jain
Hi guys, Iam using an itemRenderer in DataGridColumn. For some reasons the data is not sorted. Please help. Thanks, with regards, Jitendra - Be a better pen pal. Text or chat with friends inside Yahoo! Mail. See how.

Re: [flexcoders] Re: ItemRenderer

2007-11-16 Thread jitendra jain
Hi dear, It worked for me. Thanks a lot, Jitendra bithroop <[EMAIL PROTECTED]> wrote: If you set the dataField="" in your columns like this: It will know what to sort by. --- In flexcoders@yahoogroups.com, jitend

[flexcoders] DataGridColumn width

2007-11-19 Thread jitendra jain
Hi guys, Iam trying to adjust the width of datagridcolumn. First of all i get all the columns using the property of DataGrid i.e dg.columns which return an Array then i want to set the width of the column but it throws an error . I even cast the Array element into DataGridColumn aobject

[flexcoders] DataGrid Performance issue

2007-11-21 Thread jitendra jain
Hi guys, I have 200 rows and 32 columns on datagrid. I have changed my dataProvider on the basis of IndexChangedEvent . I get this data from shared object(Local). Is this a performance issue with dataGrid or SharedObject? I even tried to put this data into memory. Even thought it is taking th

[flexcoders] Number Formatter

2007-11-22 Thread jitendra jain
Hi guys I have to show percentage field in my datagrid. I used numberFormatter. But it gives me output i,e .99 instead of 0.99 please help Thanks, JJain - Be a better pen pal. Text or chat with friends inside Yahoo! Mail. See how.

Re: [flexcoders] Re: Cannot change button style

2007-11-27 Thread jitendra jain
Hi, Take a new button instance,let say Button bt = new Button();. then set the styles for this button and assign this button to one you have. Might this will work Thanks, with regards, JJain Amy <[EMAIL PROTECTED]> wrote: --- In flexcoders@yahoogroups.com, s

Re: [flexcoders] Re: packages adding child to stage

2007-11-27 Thread jitendra jain
Hi, U can't add a text directly to the application . U must have a container. Add that. In that container add this textInput or text box whatever. Thanks, withregards, JJain Rafael Faria <[EMAIL PROTECTED]> wrote: I created something very simple like that...

Re: [flexcoders] getElement from scope

2007-11-27 Thread jitendra jain
Look man, Before getting TextInput u have to know on which Canvas it resides. For example if u ask to go Chicago and meet John . Your question will be where John resides. Similarly u have a "id" to canvas and access the same. U can use same loop for id generating. canvas.id = i; thanks, wit

[flexcoders] Error #1119 Access of undefined property visible through static reference Panel

2007-12-23 Thread jitendra jain
Hi guys, Iam getting this error. Manytimes it compiles fine and also runs. But sometimes it throws this error. Why this is happening?. If it is compile time error then there is no chance to run the application in any circumstances. Please reply. Thanks, JJain -

[flexcoders] DataGrid corruption issue

2008-01-10 Thread jitendra jain
Hi friends, I have a issue with datagrid. I have mutiple of itemRenderers for this datagrid. Often this datagrid corrupts(while scrolling horizontally) . Why this is happening? Thanks, With regards, JJain - Looking for last minute shopping d

RE: [flexcoders] DataGrid corruption issue

2008-01-10 Thread jitendra jain
- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jitendra jain Sent: Thursday, January 10, 2008 3:56 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] DataGrid corruption issue Hi friends, I have a issue w

RE: [flexcoders] DataGrid corruption issue

2008-01-11 Thread jitendra jain
in all columns? What kind of corruption are you seeing? - From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jitendra jain Sent: Thursday, January 10, 2008 9:59 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Da

[flexcoders] Print Preview in Flex

2008-01-17 Thread jitendra jain
Hi Everybody, How can we show print preview in Flex? Before printing , i want the user to see print preview of the printing document. Thanks, with regards, JJain - Looking for last minute shopping deals? Find them fast with Yahoo! Search.

[flexcoders] Combox box selected Index

2008-02-02 Thread jitendra jain
Hi guys, I have a combo box whose data provider is an array collection. I don't want any of the items in the selected index at the time of load. How can I do this. Thanks, with regards, JJain - Looking for last minute shopping deals? Find them f

[flexcoders] File Download

2008-02-15 Thread jitendra jain
Hi friends, I'm developing an application in which my backend is Java and front end is flex. Now i want the java to generate dynamic files and send to the flex . I have a method in java that returns the File . Now all i have to do is to get this file and convert into the respective object. I

Re: [flexcoders] File Download

2008-02-15 Thread jitendra jain
I want to store this file on the client machine not just navigate to the URL. Thanks, with regards, JJain Tom Chiverton <[EMAIL PROTECTED]> wrote: On Friday 15 Feb 2008, jitendra jain wrote: > FileReference, but it hasn't worked for me. Suggest me the best way to > convert thi

[flexcoders] Allow Muitlple Selection with shift key

2008-04-07 Thread jitendra jain
Hi friends, I want multiple selection with shift key instead of control key in component List. Control key is defaultly specified by Adobe. Thanks, with regards, JJain - You rock. That's why Blockbuster's offering you one month of Blockbuster To

[flexcoders] itemFocusOut for dataGid ItemRenderer

2008-04-30 Thread jitendra jain
Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798 - Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now.

RE: [flexcoders] itemFocusOut for dataGid ItemRenderer

2008-05-01 Thread jitendra jain
may need to call preventDefault() if you are handling itemEditEnd. - From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jitendra jain Sent: Wednesday, April 30, 2008 10:05 PM To: flex group flex Subject: [flexcoders] itemFocu

[flexcoders] itemFocusout in datagrid

2008-05-16 Thread jitendra jain
Enter' key it throws an error #1009, findNextItemRenderer() Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798

[flexcoders] Data Grid issue

2008-05-23 Thread jitendra jain
. Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798

RE: [flexcoders] Data Grid issue

2008-05-25 Thread jitendra jain
ied it? - From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jitendra jain Sent: Friday, May 23, 2008 3:52 AM To: flex group flex Subject: [flexcoders] Data Grid issue Hi Alex, I read your blog : http://blogs.adobe.com/aharui/2

Re: [flexcoders] Help FLEX 3 and jasperReports

2008-05-30 Thread jitendra jain
Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798

  1   2   >