[flexcoders] Re: hold column when scrolling

2005-10-27 Thread Rajesh Jayabalan
Thanx all.. Rajesh J --- In flexcoders@yahoogroups.com, Philippe Maegerman [EMAIL PROTECTED] wrote: You can see it at work in the samples Macromedia Flex 2.0 Explorer: DataGrid / Advanced features :))) Philippe Maegerman From:

[flexcoders] Re: % in as

2005-10-20 Thread Rajesh Jayabalan
Thank you It worked, I am positive I tried this approach and had some problem, maybe I missed something.. Regards Rajesh J --- In flexcoders@yahoogroups.com, JesterXL [EMAIL PROTECTED] wrote: width=100% - Original Message - From: Rajesh Jayabalan [EMAIL PROTECTED

[flexcoders] Re: % in as

2005-10-20 Thread Rajesh Jayabalan
1.5? In Flex 1.5 percentWidth/percentHeight are read only and you want to do something like: myButton.width=100%; -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rajesh Jayabalan Sent: Thursday, October 20, 2005 11:09 AM

[flexcoders] Re: % in as

2005-10-20 Thread Rajesh Jayabalan
@yahoogroups.com, JesterXL [EMAIL PROTECTED] wrote: width=100% - Original Message - From: Rajesh Jayabalan [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, October 19, 2005 8:15 PM Subject: [flexcoders] % in as Hi, Anyone know how to set width=100% in actionscript method

[flexcoders] Re: % in as

2005-10-20 Thread Rajesh Jayabalan
percentWidth for setting percentage width in AS. Component.percentWidth = 100; Similarly you can use percentHeight to set height in percentage. -Ashish -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rajesh Jayabalan Sent

[flexcoders] Re: % in as

2005-10-20 Thread Rajesh Jayabalan
? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rajesh Jayabalan Sent: Thursday, October 20, 2005 11:32 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: % in as Yes I am using 1.5 and I found I can set width=100% and it works

[flexcoders] % in as

2005-10-19 Thread Rajesh Jayabalan
Hi, Anyone know how to set width=100% in actionscript method for any component? Regards Rajesh J Yahoo! Groups Sponsor ~-- Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.

[flexcoders] titlewindow move end

2005-10-07 Thread Rajesh Jayabalan
Hi, I want to findout where a titlewindow has moved? so that I can set the position is the user has moved the titlebar outside the screen area. Does anyone know what event is generation when a move of titlewindow is ended and how to trap it. Regards Rajesh J

[flexcoders] Re: How to make textarea visible and unvisible

2005-09-26 Thread Rajesh Jayabalan
If you set is as visible false, the components will still take up space on the screen. Put both of them in a single container (canvas, vbox.. ) give the container an id and in you initialize method set the container visible false, width and height to 0. and on your button click change the visible

[flexcoders] Re: UI help

2005-09-26 Thread Rajesh Jayabalan
A similar sample is the flextstore that is part of the flex installation. Regards Rajesh J --- In flexcoders@yahoogroups.com, David Mendels [EMAIL PROTECTED] wrote: Hi, This was built by our customer, not by us. So no one at Macromedia would have this code or the rights to give it out.

[flexcoders] events between siblings

2005-09-15 Thread Rajesh Jayabalan
Hi, Can anyone tell me if I can send an event from onr sibling to another i.e., I have an application, it has two custom components lets say both are canvas and contain elements in them (Sib1 and sib2) How do I let sib2 know that something has changed in sib1. For addeventlistener I beleive

[flexcoders] Re: checkbox in repeater tag

2005-09-09 Thread Rajesh Jayabalan
--- In flexcoders@yahoogroups.com, Husain Kitabi [EMAIL PROTECTED] wrote: Hi Rajesh Thanks for your email I dint get the last part though. You can pretty much convert this to use with checkbox. How to convert combobox into checkbox? Regards Husain Rajesh

[flexcoders] Re: checkbox in repeater tag

2005-09-08 Thread Rajesh Jayabalan
Hi, I had the same problem, I found out that you cannot dynamically create id in the repeater tag. When you create a checkbox in an array you will get an array of check boxes and you can go thru them in a for loop to find their values.. Here I am doing it with a combobox mx:Repeater id=att

[flexcoders] combobox set selection

2005-09-07 Thread Rajesh Jayabalan
Hi, I am populating a combobox (say terms from database) now even the selected id (The data column) is stored in the database. Is there any easy way to set the selected item using the id or do I need to create a function which goes thru the dataprovider and then get the selected index and set

[flexcoders] Re: combobox set selection

2005-09-07 Thread Rajesh Jayabalan
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rajesh Jayabalan Sent: Wednesday, September 07, 2005 3:21 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] combobox set selection Hi, I am populating a combobox (say terms from database) now even the selected id

[flexcoders] Re: Scrollbar in canvas

2005-08-26 Thread Rajesh Jayabalan
. 2005/8/26, Manish Jethani [EMAIL PROTECTED]: On 8/20/05, Rajesh Jayabalan [EMAIL PROTECTED] wrote: I have vScrollPolicy=auto in a canvas and a vbox inside it with a repreater which creates a buch of elements (labels, combos) In some cases the scrollbar works fine

[flexcoders] Re: OH, For the love of all that's good, please help!

2005-08-23 Thread Rajesh Jayabalan
Hey, We ran into the same problem, the wsdl is generated corretly but the object which has an arry in it is not serialized correctly by flex, so now we have no choice but to call the services twice. Rajesh J --- In flexcoders@yahoogroups.com, Sean McKibben [EMAIL PROTECTED] wrote: I ran into

[flexcoders] Re: Scrollbar in canvas

2005-08-22 Thread Rajesh Jayabalan
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rajesh Jayabalan Sent: Friday, August 19, 2005 5:56 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Scrollbar in canvas Hi, I have vScrollPolicy=auto in a canvas and a vbox

[flexcoders] Scrollbar in canvas

2005-08-19 Thread Rajesh Jayabalan
Hi, I have vScrollPolicy=auto in a canvas and a vbox inside it with a repreater which creates a buch of elements (labels, combos) In some cases the scrollbar works fine and shows correctly, but in some cases the scrollbar does not show up at all, I have tried setting it to on and in that case

[flexcoders] Re: DepthManager

2005-08-18 Thread Rajesh Jayabalan
] On Behalf Of Rajesh Jayabalan Sent: Tuesday, August 16, 2005 10:46 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: DepthManager Hi, I tried that, it does not work, the window still is showing on top of the menu. Rajesh J --- In flexcoders@yahoogroups.com, Theodore

[flexcoders] Re: DepthManager

2005-08-18 Thread Rajesh Jayabalan
not sure but you may be-able to put that in a PopUp too? - Original Message - From: Rajesh Jayabalan [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, August 18, 2005 2:53 PM Subject: [flexcoders] Re: DepthManager Hi, I am doing something similar now, since

[flexcoders] Re: DepthManager

2005-08-18 Thread Rajesh Jayabalan
do: yourMenu.setDepthAbove(yourTitleWindow); It doensn't work? - Original Message - From: Rajesh Jayabalan [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, August 18, 2005 7:41 PM Subject: [flexcoders] Re: DepthManager Hi Jester, I am using menubar

[flexcoders] Re: DepthManager

2005-08-16 Thread Rajesh Jayabalan
Hi, I tried that, it does not work, the window still is showing on top of the menu. Rajesh J --- In flexcoders@yahoogroups.com, Theodore E Patrick [EMAIL PROTECTED] wrote: The method MovieClip.swapDepths accepts both a MovieClip instance and a number. One potential issue with usage of

RE : [flexcoders] Re: DepthManager

2005-08-15 Thread Rajesh Jayabalan
it helps //Philippe De: flexcoders@yahoogroups.com de la part de Rajesh Jayabalan Date: sam. 13/08/2005 1:35 À: flexcoders@yahoogroups.com Objet : [flexcoders] Re: DepthManager Hi Manish, I created my menu adjustMenuDepths from your blog thanks

[flexcoders] Re: DepthManager

2005-08-15 Thread Rajesh Jayabalan
Hi Manish, Thanx, that helped a lot. Rajesh J --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 8/13/05, Rajesh Jayabalan [EMAIL PROTECTED] wrote: I created my menu adjustMenuDepths from your blog thanks :-), but it does have a problem in that after

[flexcoders] move window up

2005-08-15 Thread Rajesh Jayabalan
Hi, My application uses multiple titlewindows, and I am storing the reference of them in a arraylist, and creating a dynamic menu. Now in the script how do I set the depth of the window so that the window can be on the top. I cannot use setdepthabove since I do not know which window is on the

[flexcoders] Re: move window up

2005-08-15 Thread Rajesh Jayabalan
Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rajesh Jayabalan Sent: Monday, August 15, 2005 5:50 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] move window up Hi, My application uses multiple titlewindows, and I am storing the reference of them

[flexcoders] DepthManager

2005-08-12 Thread Rajesh Jayabalan
Hi, How do I use DepthManager, my menu is appearing below title windows, a work around I found was to use setdepthabove and pass the window to it for the menu, but this does not work if the window is moved. I would like to set the depth of my menu at the highest there is a method setdepthto

[flexcoders] Re: DepthManager

2005-08-12 Thread Rajesh Jayabalan
the title window. The menu is part of the application fram and title windows are created by menu events. (think of it a MDI application) Regards Rajesh J --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 8/13/05, Rajesh Jayabalan [EMAIL PROTECTED] wrote: How do

[flexcoders] Re: Dispatch event problem

2005-08-10 Thread Rajesh Jayabalan
Hi, Here is a small sample code... I am not even using Title window anymore an application with datagrid with a button cell renderer. The button on click dispatchs a event and I am trying to catch it in the application which is not working. testMain.mxml ?xml version=1.0 encoding=utf-8?

[flexcoders] Re: Dispatch event problem

2005-08-10 Thread Rajesh Jayabalan
Opps this works.. the one with titlewindow does not work. I forgot to call the confirm method on creationcomplete.. :-) Rajesh J --- In flexcoders@yahoogroups.com, Rajesh Jayabalan [EMAIL PROTECTED] wrote: Hi, Here is a small sample code... I am not even using Title window anymore

[flexcoders] Re: Dispatch event problem

2005-08-09 Thread Rajesh Jayabalan
Hi, I tired but I still do not see the second alert in the listener method. Regards Rajesh J --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 8/9/05, Rajesh Jayabalan [EMAIL PROTECTED] wrote: Hi Matt, I am dispatching it using the listowner

[flexcoders] Re: Dispatch event problem

2005-08-08 Thread Rajesh Jayabalan
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rajesh Jayabalan Sent: Thursday, August 04, 2005 1:38 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Dispatch event problem Has anyone dispatched an event from

[flexcoders] data passing between datagrid column

2005-08-08 Thread Rajesh Jayabalan
Hi, How can I calculate values of datagrid column based on other datagrid columns. i.e., mx:DataGrid mx:columns mx:Array mx:DataGridColumn columnName=qty headerText=Quantity marginLeft=4/ mx:DataGridColumn columnName=price headerText=Price marginLeft=4/ mx:DataGridColumn columnName=total

[flexcoders] Re: Dispatch event problem

2005-08-04 Thread Rajesh Jayabalan
Has anyone dispatched an event from cell renderer? anyone any ideas on how to proceed. Regards Rajesh J --- In flexcoders@yahoogroups.com, Rajesh Jayabalan [EMAIL PROTECTED] wrote: Hi Mika, Can you explain a little more sorry. Regards Rajesh J --- In flexcoders@yahoogroups.com, Mika

[flexcoders] Dispatch event problem

2005-08-02 Thread Rajesh Jayabalan
Hi, I am having problem with dispatch event. I have a titlewindow (UpdateMarketRequest) from where one click of a button I open another window (findOrders) which contains a datagring with a button cell renderer which on click I dispatch and event. In UpdateMarketRequest script file I have

[flexcoders] Re: Dispatch event problem

2005-08-02 Thread Rajesh Jayabalan
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rajesh Jayabalan Sent: Wednesday, August 03, 2005 3:43 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Dispatch event problem Hi, I am having problem with dispatch event. I have a titlewindow (UpdateMarketRequest) from where one click

[flexcoders] Http result into Objects

2005-07-22 Thread Rajesh Jayabalan
Hi, I have a HTTPService which return an xml ?xml version=1.0 encoding=utf-8 ? mrRequestData Item ItemId2/ItemId ItemDescriptionFootball/ItemDescription ItemSpecificationsSize: Small, Color: Red/ItemSpecifications ItemQuantity1/ItemQuantity MrId2/MrId /Item Item

[flexcoders] Re: Http result into Objects

2005-07-22 Thread Rajesh Jayabalan
out exactly what the result Object's actual structure is. Us a result handler, and a debugger to examine the result object. Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rajesh Jayabalan Sent: Friday, July 22, 2005 2:46 PM

[flexcoders] Re: Http result into Objects

2005-07-22 Thread Rajesh Jayabalan
dataProvider item would be an object with properties: ItemId, ItemDescription, etc, each property with the value of the textNode. Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rajesh Jayabalan Sent: Friday, July 22, 2005 3:19 PM

[flexcoders] Chain webservices

2005-07-19 Thread Rajesh Jayabalan
Hi, I am unable to call a webservice which has as a parameter Object A which containts a list of Object B I am planning to call a chain of webservice. CreateObjA(Obj A) CreateObjBs(Obj[] b) but before I can call createObjBs I need the result of the first call (which return an ID) so that I

[flexcoders] Re: No Deserializer for List

2005-07-18 Thread Rajesh Jayabalan
Hi, Anyone faced this problem. Regards Rajesh J --- In flexcoders@yahoogroups.com, Rajesh Jayabalan [EMAIL PROTECTED] wrote: Hi, I have a webservice which accepts a complex paramenter createRequest(MarketRequest marketRequest) where class MarketRequest { protected String mrId

[flexcoders] Re: No Deserializer for List -- more information

2005-07-18 Thread Rajesh Jayabalan
); } in the alerts I can see the values, but in my service when I try to see the value I get nulls Regards Rajesh J --- In flexcoders@yahoogroups.com, Rajesh Jayabalan [EMAIL PROTECTED] wrote: Hi, Anyone faced this problem. Regards Rajesh J --- In flexcoders@yahoogroups.com, Rajesh Jayabalan

[flexcoders] No Deserializer for List

2005-07-15 Thread Rajesh Jayabalan
Hi, I have a webservice which accepts a complex paramenter createRequest(MarketRequest marketRequest) where class MarketRequest { protected String mrId; protected String status; protected MRItem[] mrItems; I have getters and setters here } and MRItem is class MRItem { protected

[flexcoders] check popup window is open

2005-07-13 Thread Rajesh Jayabalan
Hi, After a modaless window is opened how do I findout if the window is still open (it has a close button) and the user has not closed it. Rajesh J -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Re: check popup window is open

2005-07-13 Thread Rajesh Jayabalan
PROTECTED] wrote: Well... On the click handler you could dispatch an event letting you know when the popup is closed. Otherwise you would assume it's still open. Rajesh Jayabalan wrote: Hi, After a modaless window is opened how do I findout if the window is still open (it has a close

[flexcoders] Re: check popup window is open

2005-07-13 Thread Rajesh Jayabalan
N D A R C H + bus 212.909.2335 + mob 914.882.3687 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rajesh Jayabalan Sent: Wednesday, July 13, 2005 1:51 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] check popup window

[flexcoders] Repeater with HTTPService

2005-07-12 Thread Rajesh Jayabalan
Hi, I have a repeater which for each category will try to get Items for the categores.. mx:Repeater id=rp dataProvider={getMRC.result.mrcategories.mrcategory} mx:VBox label={rp.currentItem.mrcName} width=100% height=100% initialize=getItems(event.target.getRepeaterItem().mrcid)

[flexcoders] Re: Repeater with HTTPService-- found problem no solution

2005-07-12 Thread Rajesh Jayabalan
@yahoogroups.com, Rajesh Jayabalan [EMAIL PROTECTED] wrote: Hi, I have a repeater which for each category will try to get Items for the categores.. mx:Repeater id=rp dataProvider={getMRC.result.mrcategories.mrcategory} mx:VBox label={rp.currentItem.mrcName} width=100% height=100% initialize

[flexcoders] Re: unknown property warning

2005-07-11 Thread Rajesh Jayabalan
Hi, Can anyone help me with this. How do I bind my xml. Regards Rajesh J --- In flexcoders@yahoogroups.com, Rajesh Jayabalan [EMAIL PROTECTED] wrote: Hi, How do I bind it.. I thought by mx:Array id=attArr{dataObject.Attributes}/mx:Array and then mx:Repeater id=att

[flexcoders] Re: unknown property warning

2005-07-11 Thread Rajesh Jayabalan
, then bind to the variable. Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rajesh Jayabalan Sent: Monday, July 11, 2005 2:03 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: unknown property warning Hi, Can anyone

[flexcoders] Re: unknown property warning

2005-07-11 Thread Rajesh Jayabalan
way to suppress the warnings with code though. Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rajesh Jayabalan Sent: Monday, July 11, 2005 7:00 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: unknown property warning

[flexcoders] unknown property warning

2005-07-08 Thread Rajesh Jayabalan
Hi, I am getting data using a HTTPService from a jsp. which returns an xml of the following format catalog product id1/id nameTable Cloth (Cotton)/name description / imageassets/noimage.jpg/image Attributes Attribute NameColor/Name Attvalues data17/data label /

[flexcoders] Re: unknown property warning

2005-07-08 Thread Rajesh Jayabalan
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rajesh Jayabalan Sent: Saturday, July 09, 2005 4:57 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] unknown property warning Hi, I am getting data using a HTTPService from a jsp. which returns an xml of the following

[flexcoders] Re: using Repeater

2005-07-07 Thread Rajesh Jayabalan
to assign a dynamic id? Since you are using repeater to generate ViewStack, you know the order of ViewStacks and you can always refer by their index? -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rajesh Jayabalan Sent

[flexcoders] using Repeater

2005-07-06 Thread Rajesh Jayabalan
Hi, when I try to use the value from repeator for a viewstack id I get a id '{rp.currentItem.mrcName}' is not a valid identifier error. I am trying to create viewstack with dynamic ids and pass the id to a function. Here is my code. Rajesh J mx:Panel id=main title=Services width=65%

[flexcoders] Repeator to AS method

2005-07-01 Thread Rajesh Jayabalan
Hi, In my mxml I am using a repeator to process a list and create VBox. When the VBox is shown I need to call a method (getItems) with a parameter from the list so I am using (mx:VBox label={rp.currentItem.mrcName} show=getItems({rp.currentItem.mrcid})) and in my AS function Iam trying to set

[flexcoders] Re: Repeator to AS method

2005-07-01 Thread Rajesh Jayabalan
- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rajesh Jayabalan Sent: Saturday, July 02, 2005 12:23 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Repeator to AS method Hi, In my mxml I am using a repeator to process a list and create VBox. When the VBox

[flexcoders] Re: Repeator to AS method

2005-07-01 Thread Rajesh Jayabalan
(event.target.getRepeaterItem() + ' pressed')/ /mx:VBox /mx:Repeater /mx:Accordion /mx:Application -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rajesh Jayabalan Sent: Saturday, July 02, 2005 2:26 AM To: flexcoders@yahoogroups.com

[flexcoders] Re: Repeator to AS method

2005-07-01 Thread Rajesh Jayabalan
/mx:Accordion /mx:Application -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rajesh Jayabalan Sent: Saturday, July 02, 2005 2:26 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Repeator to AS method Hi

[flexcoders] mx:TileList

2005-07-01 Thread Rajesh Jayabalan
Hi, I am trying to use tileset to create tiles with data and image mx:TileList id=myTile dataProvider={dataObject} cellRenderer=ProductThumbnail width=100% height=100% itemWidth=120 itemHeight=116 borderStyle=none dragEnabled=true/ But by default it is only creating 4 columns, when according

[flexcoders] dynamically create a container

2005-06-29 Thread Rajesh Jayabalan
Hi, I need to create containers (box,panel.. ) dynamically based on the data in DB. i.e., If I have 5 categories I need to create 5 VBOX inside a mx:Accordion ( and populate them with their corresponding items) Is this possible? Any help will be greatly appreciated Regards Rajesh J --

[flexcoders] Re: dynamically create a container

2005-06-29 Thread Rajesh Jayabalan
-Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rajesh Jayabalan Sent: Thursday, June 30, 2005 4:28 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] dynamically create a container Hi, I need to create containers (box,panel

[flexcoders] combobox cell renderer

2005-05-23 Thread Rajesh Jayabalan
Hi, I am having problems with initializing my combo box cell renderer. I have a application initialize method call which calls a few httpservice to get data function appInit() { clcrSSrv.send(); clStatSrv.send(); clTypeSrv.send(); initCellRenderer(); } the

[flexcoders] Re: cell render problem

2005-05-18 Thread Rajesh Jayabalan
Hi, I found that i had to set comboLabel.text = combo.dataProvider[i].label; for it to display the correct values. Regards Rajesh J --- In flexcoders@yahoogroups.com, Rajesh Jayabalan [EMAIL PROTECTED] wrote: Hi Sree, That helped an another solution that I found was to use

[flexcoders] Re: string trim

2005-05-18 Thread Rajesh Jayabalan
Thanx --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: Here's an alternative to Tracy's that I've used: function trimString(str : String) : String { var startIdx = 0; while(str.indexOf(' ',startIdx) == startIdx) ++startIdx; var endIdx =

[flexcoders] Re: cell render problem -- Final resolution

2005-05-18 Thread Rajesh Jayabalan
() combo.text_mc.label.getDepth() ) combo.text_mc.border_mc.swapDepths( combo.text_mc.label ); } } --- In flexcoders@yahoogroups.com, Rajesh Jayabalan [EMAIL PROTECTED] wrote: Hi, I found that i had to set comboLabel.text = combo.dataProvider[i].label; for it to display the correct

[flexcoders] Re: cell render problem

2005-05-17 Thread Rajesh Jayabalan
Hi Sree, That helped an another solution that I found was to use combo.dataProvider = parentDocument.clTypeSrv.result.types.type; in my setValue method of the cell renderer. Now my combobox is showing up fine, but it is not selecting any thing by default and when I select some option and

[flexcoders] Re: editable datagrid

2005-05-16 Thread Rajesh Jayabalan
Hi Manish, My data provider is a httpService, so how can I send the edited data back? And since the dataprovider is an object, how to access the object in my java (webservice class). Rajesh J --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 5/14/05, Rajesh

[flexcoders] Re: cell render problem

2005-05-16 Thread Rajesh Jayabalan
] wrote: On 5/17/05, Rajesh Jayabalan [EMAIL PROTECTED] wrote: note:: clTypeSrv is my HTTPService and clTypeSrv.send() is called on application initilize. private function initCellRenderer() : Void { ComboBoxCellRenderer.dataProvider = clTypeSrv.result.types.type

[flexcoders] editable datagrid

2005-05-13 Thread Rajesh Jayabalan
Hi, How do I send the information in an editable datagrid back to the server (I am using a webservice to update and delete). I have only seen examples to make a datagrid editable but what should I do save the edited information. Regards Rajesh J Yahoo! Groups Links * To visit your

[flexcoders] Using HttpService (a jsp) as dataprovider

2005-05-06 Thread Rajesh Jayabalan
Hi, I am trying to use a jsp file which generates a xml ?xml version=1.0 encoding=utf-8 ? clcrstatuses status label=-- Select -- data= / status label=Credit Hold data=Credit Hold / status label=Deduct data=Deduct / status label=Pending data=Pending / status label=Pre-Pay

[flexcoders] Re: Using HttpService (a jsp) as dataprovider

2005-05-06 Thread Rajesh Jayabalan
got the solution from http://www.markme.com/hoyt/archives/006790.cfm thanks kevin hoyt Regards Rajesh J --- In flexcoders@yahoogroups.com, Rajesh Jayabalan [EMAIL PROTECTED] wrote: Hi, I am trying to use a jsp file which generates a xml ?xml version=1.0 encoding=utf-8

[flexcoders] Menu controlled panels

2005-05-02 Thread Rajesh Jayabalan
Hi, I am trying to create an application with a menubar and a set of menuitems. For each menuItem I should show a panel (filled with its specific information) ex Menu Item : Find Orders -- Panel-1 : FInd orders panels with all the searchable fields and stuff Menu Item : Create Order --