[flexcoders] 32kb limit in Flex 2.0?

2006-03-02 Thread Parekh, Shweta - BLS CTR
Title: 32kb limit in Flex 2.0? Hi, Does anybody know if there is the 32KB size limit on actionscript files in Flex 2.0 also? I know it is there in Flex 1.5. Thanks, Shweta -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search A

RE: [flexcoders] restrict text size in datagrid cell??

2006-02-16 Thread Parekh, Shweta - BLS CTR
] ___ From: flexcoders@yahoogroups.com  [mailto:[EMAIL PROTECTED] On Behalf Of Parekh, Shweta - BLS  CTR Sent: 15 February 2006 16:33 To: flexcoders@yahoogroups.com Subject: [flexcoders] restrict text size in  datagrid cell?? Hi, How can I specify the maxChars on

[flexcoders] restrict text size in datagrid cell??

2006-02-15 Thread Parekh, Shweta - BLS CTR
Title: restrict text size in datagrid cell?? Hi, How can I specify the maxChars on cells in a datagrid if I want to restrict the size of text entered in a cell to a certain limit. For text input etc. Flex has maxChars which takes care of it. How do I do it in a datagrid? Thanks, Shweta

[flexcoders] changing background color of a cell in datagrid

2005-12-08 Thread Parekh, Shweta - BLS CTR
Title: changing background color of a cell in datagrid Hi, Can anyone send me some sample code / point to some sample code to change the background color of a cell in a datagrid when the cell is clicked. I have tried writing a custom cellRenderer for this but with no luck. class MyCel

[flexcoders] problem with arrays

2005-11-23 Thread Parekh, Shweta - BLS CTR
Title: problem with arrays Hi, I have a piece of code like the following:         var testArray:Array = new Array();         var temp_arr:Array = new Array(2);                  for(var num:Number = 0; num < 3; num++)         {      

RE: [flexcoders] Changing the background color of row in datagrid

2005-11-08 Thread Parekh, Shweta - BLS CTR
Title: Message Darron,   I did use setPropertiesAt function as you have suggested. But my problem is that when I use it the way you have suggested, employee_dg.setPropertiesAt(rowInd, {backgroundColor:0xFFF00}); the bg color of the row does not change instanlty. I have to click somewhere

[flexcoders] Changing the background color of row in datagrid

2005-11-08 Thread Parekh, Shweta - BLS CTR
Title: Changing the background color of row in datagrid Hi, I would like to be able to change the background color of a row in the datagrid after I click on a row and then enter the letter : n in the input box called print_txt and hit enter.  I use the setPropertiesAt method, employee_dg.

[flexcoders] CellRenderer for datagrid

2005-11-02 Thread Parekh, Shweta - BLS CTR
Hi, I have a problem with using cellrenderer at datagrid level. Attached is a sample of the application which I'm using to test the cellrenderer. If I have the renderer at column level, , when I click on the cells under "active" column, the background color of the cells change. However, for my

RE: [flexcoders] Keyup event in datagrid

2005-10-31 Thread Parekh, Shweta - BLS CTR
Behalf Of Manish JethaniSent: Friday, October 28, 2005 10:07 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Keyup event in datagridOn 10/28/05, Parekh, Shweta - BLS CTR <[EMAIL PROTECTED]> wrote:> When is the keyup event in datagrid fired? I have a requirement w

RE: [flexcoders] Right click and popup window

2005-10-21 Thread Parekh, Shweta - BLS CTR
Title: Message I tried this out from sample code given in Flex book - Developing rich clients with Macromedia Flex. It does have the createDelegate method.   -Shweta     -Original Message-From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Abdul Qabiz

RE: [flexcoders] Right click and popup window

2005-10-21 Thread Parekh, Shweta - BLS CTR
Title: Message Hi, I tried using the Delegate class for the popup but it still does not work. It gives me an error saying the property being referenced does not have the static attribute. (error on the lines where I use createDelegate method) I'm working on Flex 1.5   Any ideas??   htt

[flexcoders] Right click and popup window

2005-10-19 Thread Parekh, Shweta - BLS CTR
Title: Right click and popup window Thanks Jester. I understand the getEditingData() method better. I got that to work. I have a question regarding bringing up a popup window when you right click, and click on a particular menu option. I got the right click and creating custom menu by pus

[flexcoders] Problem with getEditingData() method in dataProvider

2005-10-19 Thread Parekh, Shweta - BLS CTR
Title: Problem with getEditingData() method in dataProvider Hi, I have a question about getEditingData() method in dataProvider. I have a datagrid as below. My model has a two dimensional String array called columnarSpec which I give to the dataProvider of my datagrid. The data in the dat

RE: [flexcoders] Problem with repeater and datagrid -- Please help!

2005-10-14 Thread Parekh, Shweta - BLS CTR
) ...   Does that help? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manish JethaniSent: Friday, October 14, 2005 12:27 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Problem with repeater and datagrid -- Please help! On 10/14/05, Parekh, Shweta

[flexcoders] Problem with repeater and datagrid -- Please help!

2005-10-14 Thread Parekh, Shweta - BLS CTR
Title: Problem with repeater and datagrid -- Please help! Hi, I have a problem with repeater and datagrids. I have a repeater in ItemSpec.mxml file (below) which includes an mxml component: itemSpecInfo. File:  itemSpec.mxml        …...      ItemSpecInfo.mxml has a

RE: [flexcoders] Populating values in datagrid from arrays

2005-10-03 Thread Parekh, Shweta - BLS CTR
...  myArray= mx.utils.ArrayUtil.toArray(event.result);It worked for me in a similar case ...                        "Parekh, Shweta - BLS CTR"

[flexcoders] Populating values in datagrid from arrays

2005-10-03 Thread Parekh, Shweta - BLS CTR
Hi, I am having problem populating values in my datagrid. From my mxml, I make a remote call to my controller which returns an array of ItemVOs. ItemVO has one-dimensional integer array, containing values for columns in each row in the datagrid. i.e. if my int array in ItemVO1 contains values 1,

[flexcoders] Error running Flex application - It is not a known type or a prop erty..

2005-09-01 Thread Parekh, Shweta - BLS CTR
Hi, I am getting errors (It is not a known type or a property of mx.containers.TabNavigator) when I am trying to run my Flex application on BEA Weblogic 8.1 on a Unix machine. I am thorougly confused because I have BEA Weblogic 8.1 running locally on my Windows pc and I was able to successfully ru

[flexcoders] Error deploying flex application to Weblogic server

2005-08-23 Thread Parekh, Shweta - BLS CTR
Hi, I am trying to deploy my flex application in the form of an ear file to WebLogic 8.1 server through the console. While deployment, I get the following error. Strangely when the application is put in applications folder on the server in an exploded format, the application runs fine. The error t