[flexcoders] Flex Upload/Download using XML-RPC

2010-04-20 Thread Manu Dhanda
Can someone please shed some light like how we can upload/download files using XML-RPC in Flex? Had anyone tried it? Thanks. -- View this message in context: http://old.nabble.com/Flex-Upload-Download-using-XML-RPC-tp28287819p28287819.html Sent from the FlexCoders mailing list archive at

[flexcoders] SWFLoader throwing RTE

2010-03-30 Thread Manu Dhanda
I am trying to add a swf file in a VBox. Its as simple as below: mx:VBox mx:SWFLoader source=assets/elixir_clock.swf width=190 height=190/ /VBox When I execute the app, it throws me RTE: Error: Error #1023: Stack overflow occurred. at mx.core::UIComponent/get

[flexcoders] BlazeDS + Google App Engine

2009-09-22 Thread Manu Dhanda
Hi Guys, As most of you knows that BlazeDS does not work with Google App Engine(Java), there is a bug raised in the bug tracking system. You can vote for it here for a quick fix: http://bugs.adobe.com/jira/browse/BLZ-444 --Manu. -- View this message in context:

[flexcoders] SWF SWC File extensions. What they stands for..??

2009-09-10 Thread Manu Dhanda
My understanding about SWF: SWF(Shockwave Flash) which was later changed to Small Web Format. SWC - ??? Can anybody post me the extension details about swc. What it stands for? I know that it is an extension for library files. But, I am just interested in the term SWC, Ehat it stands for?

Re: [flexcoders] Adding space in between each of my custom Item Renderers in a TileList

2009-02-12 Thread Manu Dhanda
Just give padding to the itemrenderer's and you are done. Cheers!! ThinkBlue wrote: Hello all, How would you add spacing in between each item of a TileList...Just adding padding left and right is not working for me. I think it is due to having a custom item renderer. Is there a trick

[flexcoders] DataGrid updateComplete causes lots of memory leak.

2009-02-09 Thread Manu Dhanda
Hi Guyz, I have a viewstack holding two DG's. When I double click on an item in first DG, it should switch to the second DG and select the corresponding item in that DG and scroll down to that item. If I set verticalscrollbarposition something like..

RE: [flexcoders] DataGrid updateComplete causes lots of memory leak.

2009-02-09 Thread Manu Dhanda
://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Manu Dhanda Sent: Monday, February 09, 2009 8:21 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] DataGrid updateComplete causes lots of memory leak. Hi Guyz, I have a viewstack

RE: [flexcoders] DataGrid updateComplete causes lots of memory leak.

2009-02-09 Thread Manu Dhanda
://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Manu Dhanda Sent: Monday, February 09, 2009 10:07 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] DataGrid updateComplete causes lots of memory

Re: [flexcoders] Flex RegExp issues

2009-02-08 Thread Manu Dhanda
So, how can I exactly match . OR - character correctly? Guy Morton wrote: In regexp syntax, . means match any character On 06/02/2009, at 1:37 PM, Manu Dhanda wrote: Hi Guyz, I am having this particular issue and at the moment not able to come out with a solution. Any help

Re: [flexcoders] Flex RegExp issues

2009-02-08 Thread Manu Dhanda
So, how can I exactly match . OR - character correctly? Guy Morton wrote: In regexp syntax, . means match any character On 06/02/2009, at 1:37 PM, Manu Dhanda wrote: Hi Guyz, I am having this particular issue and at the moment not able to come out with a solution. Any help

Re: [flexcoders] Flex RegExp issues

2009-02-08 Thread Manu Dhanda
by doing \. instead of . You might also have to escape the escape character too, i.e. \\. instead. 2009/2/9 Manu Dhanda manuraj.dha...@gmail.com: So, how can I exactly match . OR - character correctly? Guy Morton wrote: In regexp syntax, . means match any character On 06/02/2009, at 1:37

Re: [flexcoders] Flex RegExp issues

2009-02-08 Thread Manu Dhanda
] means match any character from a to z, to match a, - or z you'd do [a\-z]) Guy On 09/02/2009, at 11:24 AM, Sam Lai wrote: Escape them by doing \. instead of . You might also have to escape the escape character too, i.e. \\. instead. 2009/2/9 Manu Dhanda manuraj.dha...@gmail.com

[flexcoders] Flex RegExp issues

2009-02-05 Thread Manu Dhanda
Hi Guyz, I am having this particular issue and at the moment not able to come out with a solution. Any help or direction to solution would be great. var someStr:String = 12-88; var str:String = 12.88; var bool:Boolean = someStr.match(new RegExp(str,'i'); Here, the match returns true. I don't

Re: [flexcoders] Click event in Flex 3 TileList no longer sets selectedItem when...

2009-02-02 Thread Manu Dhanda
Can u please put some code for your solution?? 'cuz am having the same issue now. Thanks, Manu. Rich Germuska wrote: OK, stumbled upon a fix by pure chance. Is this a bug? By importing UIMovieClip and creating an instance (in a completely separate component, that isn't even

Re: [flexcoders] display CLOB in datagrid

2009-01-08 Thread Manu Dhanda
Can you debug and see that there are actually some data to display and they are not just null OR simply objects without any typecast? First you need to verify the channel that it actually receiving the data and CORRECT data. And then verify your datagrid that it is actully assigning the correct

Re: [flexcoders] (Urgent!!!)Maximize and Restore functionalities

2009-01-04 Thread Manu Dhanda
Check out PodLayoutManager.as class and particularly addResizeAndMoveToParallel() method. Don't confuse urself with Parallel, thats just an effect. -Manu. kotha poornima wrote: Hi All, Sorry to everyone. I gave the wrong url. You can find the sample in this url.

Re: [flexcoders] Knock knock..Help me!!

2009-01-04 Thread Manu Dhanda
Please use some informatory Subject line, So that people get an idea about the post. Thanks, Manu. roopal oswal wrote: Hi people, Does anyone know how do i make my air application run in background(Mac operating system).My purpose of making it background is to make the application

[flexcoders] DataGrid Sorting

2008-12-28 Thread Manu Dhanda
Hi.. I have CheckBox as an itemrenderer. and a custom sorting function for one another column. But once I sort that another column and after that try to use checkbox(to select items), why every selection of checkbox make a call to that custom sorting function?? Can anyone please explain me

[flexcoders] Custom Tooltip

2008-10-13 Thread Manu Dhanda
Hii I was looking for a custom tooltip. Is there a way that I can pass an object to a tooltip rather then a String. Say, I want to pass an Arraycollection.. Is that possible?? And if it is.. then how? Thanks. -- View this message in context:

Re: [flexcoders] Custom Tooltip

2008-10-13 Thread Manu Dhanda
an array collection... For what reason and how do you want it to render? Sent from my iPhone On Oct 13, 2008, at 5:09 AM, Manu Dhanda [EMAIL PROTECTED] wrote: Hii I was looking for a custom tooltip. Is there a way that I can pass an object to a tooltip rather then a String. Say

Re: [flexcoders] Custom Tooltip

2008-10-13 Thread Manu Dhanda
my iPhone On Oct 13, 2008, at 8:42 AM, Manu Dhanda [EMAIL PROTECTED] wrote: I can always define a custom tooltip with a Panel, List or anything in it. But the real issue is, How can I pass data to it(as an Object/Collection), other then just text ??? Any idea/thoughts

Re: [flexcoders] Custom Tooltip

2008-10-13 Thread Manu Dhanda
I am asking to pass an object to a ToolTip rather then only a String. Does anyone have any direction on that?? Thanks. Amy-28 wrote: --- In flexcoders@yahoogroups.com, Manu Dhanda [EMAIL PROTECTED] wrote: ok, for an example, I have a row in the list. And for it's tooltip, I want

[flexcoders] Module vs Application

2008-10-01 Thread Manu Dhanda
Hii Guyz, My question is regarding the modular applications. What will be the performance or logical effect on the application if we will use small applications as modules under a big wrapper application? The benefits I see here is maintenance is easier. While you are making any changes to any

Re: [flexcoders] Help Me

2008-10-01 Thread Manu Dhanda
Follow the link for your answer: http://www.adobe.com/devnet/flex/articles/itemrenderers_pt1.html And please use a more related subject to the post. It will help in searching the solution for this sort of problems in future for beginners. -Manu. NATA RAJAN wrote: Hi friends How to place

[flexcoders] How to stop the updateDisplay event propagation?

2008-09-30 Thread Manu Dhanda
Hi, I am having mouse pointer flickering issue while one of the component is still preparing it's data. And that flicking is caused because I am assigning renderer's through a for loop to a grid. Can someone give me a pointer like what I need to do? Because I am really tired of looking for this

[flexcoders] Debug mode or normal mode?

2008-09-30 Thread Manu Dhanda
Hii guyz, How do u identify from inside your application whether your app is running in Debug Mode or Normal Mode? Thanks. -- View this message in context: http://www.nabble.com/Debug-mode-or-normal-mode--tp19739663p19739663.html Sent from the FlexCoders mailing list archive at Nabble.com.

Re: [flexcoders] Debug mode or normal mode?

2008-09-30 Thread Manu Dhanda
know your more questions if any..  Thanks, with Regards, Jitendra Jain - Original Message From: Manu Dhanda [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, 30 September, 2008 4:08:01 PM Subject: [flexcoders] Debug mode or normal mode? Hii guyz, How

RE: [flexcoders] Pure MVC

2008-09-28 Thread Manu Dhanda
Hii, Sorry for not being related. But as it came about pureMVC, I was also looking for it. Can someone confirm me that we have some solution in pureMVC for modules? Thanks, Manu. Robert Easton wrote: I use PureMVC and also found it hard to understand. I can tell you that I just persisted

Re: [flexcoders] Hi Alex

2008-09-26 Thread Manu Dhanda
First of all, you should be talking about an application (not an swf). Now, the SIX pages, I took it as SIX views. There are many ways to do that. One of them is: mx:Application mx:Script private function return nextPrevView():void{ if(buttonClicked == prev){ viewstack.selectedIndex =

RE: [flexcoders] TabNavigator - have to click twice on tab to display page

2008-09-25 Thread Manu Dhanda
Hi Tracy, It's really an issue with TabNavigator and we had faced it. I won't say that I need to click the tab twice, but I need to switch back to Tab1 and then come back to Tab2 to see the content on my 2nd Tab. And yes, already tried with creationPolicy='all', but it din't worked. -Manu.

[flexcoders] ToolTip (with Icon/Image, with grid/datagrid etc..)

2008-09-24 Thread Manu Dhanda
Hii Can anyone give me some pointer for my requirement about custom tooltip that can hold an image/icon, datagrid/grid and components like tht. Any existing component or any guidelines/suggestion in that direction. Thanks, Manu. -- View this message in context:

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

2008-09-24 Thread Manu Dhanda
But Josh, as I put in my previous posts, I used a local arraycollection(instead of ListCollectionView) pointing to Model, so that only my local will get changed when i 'll apply any filter to it. But, then, my local doesn't update with the changes in Model. This was my problem originally. My

Re: [flexcoders] how to connect database from flex to mysql

2008-09-24 Thread Manu Dhanda
Try assql. Here is the link: http://code.google.com/p/assql Regards, Manu. naaga_maniccam wrote: Could u please help me ,how to connect database from flex to mysql in this regard, expecting your reply yrs, naaga -- View this message in context:

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

2008-09-23 Thread Manu Dhanda
..  Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798 - Original Message From: Manu Dhanda manuraj.dhanda@ gmail.com To: [EMAIL PROTECTED] ups..com Sent: Monday, 22 September, 2008 8:56:09 AM Subject: Re: [flexcoders] [Bindable] is not getting updated

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

2008-09-23 Thread Manu Dhanda
at 1:13 PM, Manu Dhanda [EMAIL PROTECTED]wrote: Do I explicitly need to dispatch any event for BindUtils.bindProperty(..) to happen ?? Cuz, I am not getting my xyz var changed with the change in someVar. Note: I am putting this line of code (BindingUtils.bindProperty(this,xyz

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

2008-09-23 Thread Manu Dhanda
={ pm.woCalSelectedDayData.programList }/ On Wed, Sep 24, 2008 at 12:22 PM, Manu Dhanda [EMAIL PROTECTED]wrote: Ok, here is my concerned code snippet: mx:Canvas ... ... [Bindable] public var woCalVO:WOCalVO = ProgramModel.getInstance().woCalSelectedDayData; private function onInitialize():void

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

2008-09-23 Thread Manu Dhanda
; filterReset(); setFilter(); return woCalVO ; } mx:List id=lfList dataProvider={woCalVO.programList}/ ... mx:Canvas/ Thanks, Manu. Manu Dhanda wrote: Hi.. Josh, The way you said will work as I said earlier that ProgramModel is updated. But the problem is I want

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

2008-09-22 Thread Manu Dhanda
of MyModel.getInstance().someVar during application initialization! Hope this helps! On Mon, Sep 22, 2008 at 5:26 AM, Manu Dhanda [EMAIL PROTECTED]wrote: Josh, Is it a right way to do the following: [Bindable] private var xyz:String = MyModel.getInstance().someVar; Now, if I use xyz

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

2008-09-21 Thread Manu Dhanda
Hii Guyz, Although it's very strange (even for me), but this [Bindable] tag is not working for me. I am following the cairngorm structure and storing a variable in Model. Now, in one of my code file, if I 'll create a local bindable variable, that binds to model.. then it is not being updated

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

2008-09-21 Thread Manu Dhanda
-4 wrote: - Original Message - From: Manu Dhanda [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, September 22, 2008 3:08 AM Subject: [flexcoders] [Bindable] is not getting updated.. Hii Guyz, Although it's very strange (even for me), but this [Bindable] tag

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

2008-09-21 Thread Manu Dhanda
this: BindingUtils.bindProperty(this, myValue, sourceObject, someValue); Then whenever sourceObject tells the word that someValue has been updated (with events), Flex will set the myValue field on your object. -Josh On Mon, Sep 22, 2008 at 1:07 PM, Manu Dhanda [EMAIL PROTECTED]wrote: Hi Paul

[flexcoders] UI component, a set function creationComplete

2008-09-18 Thread Manu Dhanda
Hii Guyz, I am having some strange issue here. What I am doing is: comps:CustomUIComponent Data={_dataP}/ I am using this component in some abc.mxml as above. Data is something like: public function set Data(value:ArrayCollection){ //set ur data here. } But strangely, when I do it(pay

Re: [flexcoders] Error #1046

2008-09-18 Thread Manu Dhanda
Arvind, You have not imported this Event class. Just import it as: import flash.events.Event; -Manu. aravinda88 wrote: hi, I am new to flex.I was trying some of the examples in flex.but I keep getting this exception Error #1046: Type was not found or was

Re: [flexcoders] BlazeDS and Remote Objects

2008-09-18 Thread Manu Dhanda
If I am getting you right(call Remote Objects (POJO) on other computer as in server here), it is always possible to call remote objects on other computer (using data services like blazeds). -Manu. zdenekmikan wrote: I would like to be sure: Is it possible to have a SWF on one computer

Re: [flexcoders] UI component, a set function creationComplete

2008-09-18 Thread Manu Dhanda
) { // do things with child components IE myGrid.data = _data; dataChanged = false } } Setting your child properties in commitProperties() guarantees your children will be created. Peace, Mik On Thu, Sep 18, 2008 at 3:09 AM, Manu Dhanda [EMAIL

Re: [flexcoders] Modularising a flex app

2008-09-13 Thread Manu Dhanda
Using Modules is the one way to reduce the size of swf's from one to many. But, it's a big hassle while you are developing your application. As every build time is more as other modules are also part of your application and if many dev working on different modules, then dependency increases on

[flexcoders] Adding effects to a list on filtering

2008-09-12 Thread Manu Dhanda
Hii, How can we add effects while we apply the filterfunction to a list. First, Is that possible to add effects/transitions ?? Second, how can we achieve this? Regards, Manu. -- View this message in context:

[flexcoders] Grid's rowindex and columnIndex ( Not DataGrid)

2008-09-11 Thread Manu Dhanda
Hii, How to find the row and column index of a Grid's cell when some action(say mouse click) happen on that particular cell. Note: It's Grid, not DataGrid. Thanks, Manu. -- View this message in context:

Re: [flexcoders] Grid's rowindex and columnIndex ( Not DataGrid)

2008-09-11 Thread Manu Dhanda
No response yet!! Anyone around who had faced this situation.. maybe it's too easy, but my thoughts are blocked at the moment.. Regards, Manu. Manu Dhanda wrote: Hii, How to find the row and column index of a Grid's cell when some action(say mouse click) happen on that particular cell

[flexcoders] TileList: Tiles possible with different width/height ??

2008-09-02 Thread Manu Dhanda
Hii, My question is: Can a TileList hold tiles of variable width/height. Or can we play with a tiles's width/height at runtime? Thanks, Manu. -- View this message in context: http://www.nabble.com/TileList%3A-Tiles-possible-with-different-width-heighttp19264644p19264644.html Sent from

[flexcoders] DataGrid columnWidth at runtime

2008-09-01 Thread Manu Dhanda
Hii, Can anyone help me to get a solution for the above written problem. I have a datagrid with 8 columns. And I want to increase it's column width on the mouse click of that cell (and decrease the other column widths in the same proportion). First column I want to keep constant (of width 20).

RE: Re[flexcoders] moving DataGrid's last(empty) row

2008-08-19 Thread Manu Dhanda
wrote: I think there's a known issue with DG where it does that. What happens if you subtract one before setting rowCount? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manu Dhanda Sent: Monday, August 18, 2008 6:33 PM

Re[flexcoders] moving DataGrid's last(empty) row

2008-08-18 Thread Manu Dhanda
Hii, How can I remove the last row from a dataGrid, that is added by default and have no data. Actually, am working on a custom component (a simple calendar) and based on the month, I need to show only 5(OR 6) rows. But, default DataGrid behavior always add one additional row to it i.e. 6(OR 7)

Re: [flexcoders] Setting DataGrid row height at runtime

2008-08-01 Thread Manu Dhanda
Yeah Amy.. thnkz for the tip. I tried the same thing and it worked. Manu. Amy-28 wrote: --- In flexcoders@yahoogroups.com, Manu Dhanda [EMAIL PROTECTED] wrote: Hii I want to set the datagrid row height based on a Boolean at run time. Say I have 10 rows in a datagrid. Now if I

[flexcoders] Setting DataGrid row height at runtime

2008-07-31 Thread Manu Dhanda
Hii I want to set the datagrid row height based on a Boolean at run time. Say I have 10 rows in a datagrid. Now if I set the boolean value to false, I want to set 4 rows as of height ZERO. And if at runtime again that boolean is set to true, it should bring them back to the normal height. Can

[flexcoders] DataGridColumn issue: Passing an array.

2008-07-28 Thread Manu Dhanda
Hii Guyz, The problem is: I am passing an array of weekdays as datafield for a DataGridColumn as follows: mx:DataGridColumn dataField=days headerText=S itemRenderer=customRenderer/ mx:DataGridColumn dataField=days headerText=M itemRenderer=customRenderer/ mx:DataGridColumn dataField=days

[flexcoders] List itemrenderer

2008-07-23 Thread Manu Dhanda
Hii guys, am sure that this had been discussed here before. My problem details are: I am trying to put a custom item renderer in my list component. And the custom renderer is an HBox. Now, what happens is when I select an item in the list, it get selected(which is absolutely fine). But when I

[flexcoders] Why one should use states ? OR why not ?

2008-07-17 Thread Manu Dhanda
My query is, as above, Why should we use the states ? OR Why we should not use the states ? Are there any scenarios where states come to your rescue ? Having Cairngorm (ModelLocator/view) in picture, does it has any relation with using states OR not using states ? Is it a good practice to

RE: [flexcoders] function foo(... args) { ;}

2008-07-16 Thread Manu Dhanda
You mean to say: function foo(... args) { var myArgs:Array = Array(args); } Am I right here?? Thanks, Manu. Rick Winscot-2 wrote: You can treat args as an array. Rick Winscot From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manu Dhanda Sent

Re: [flexcoders] Is it possible to listen to *all* events without hacking the SDK?

2008-07-16 Thread Manu Dhanda
Hii Josh, I have no idea, if it is exactly related to your query. I was looking for the same sort of solution to do an AuditLogger stuff. I want event based logging. No traces and all. It was like: 1. capture all the events 2. get their Target and currentTarget 3. log with timestamp and much

Re: [flexcoders] Trying to control percentage based containers

2008-07-16 Thread Manu Dhanda
Give width and height to your TabNavigator. Manu. daddyo_buckeye wrote: I'm trying to control a percentage-based layout with several nested containers. Unless I set a fixed size (in pixels) or a minWidth or minHeight, my outer panel shrinks to a very small size. I understand that

[flexcoders] function foo(... args) { ;}

2008-07-15 Thread Manu Dhanda
How to access the parameters passed in the function like this: function foo(... args) { // How to access the passed arguments here. } Thanks. -- View this message in context: http://www.nabble.com/function-foo%28...-args%29-%7B--%7D-tp18480729p18480729.html Sent from the FlexCoders

[flexcoders] Flex, Cairngorm callback function

2008-07-14 Thread Manu Dhanda
Hii all, Here I want to have your opinion considering all three (Flex, Cairngorm callback function) together. My consideration and approach is to utilize the Cairngorm's command class (execute method) to perform the required actions/tasks. In a few scenario's, when it comes to sequencing,

Re: [flexcoders] How appropriate is it using mx_internal ?

2008-07-14 Thread Manu Dhanda
reference the internal stuff (and may be pain points in the future against new framework versions). -Josh On Mon, Jul 14, 2008 at 11:37 AM, Manu Dhanda [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Hi guys, As I am trying to get into this Flex world, I

Re: [flexcoders] Flex, Cairngorm callback function

2008-07-14 Thread Manu Dhanda
Further inline comments(in bold) below: Douglas Knudsen wrote: I've made comments inline below. DK On Mon, Jul 14, 2008 at 5:36 AM, Manu Dhanda [EMAIL PROTECTED] wrote: Hii all, Here I want to have your opinion considering all three (Flex, Cairngorm callback function) together

[flexcoders] How appropriate is it using mx_internal ?

2008-07-13 Thread Manu Dhanda
Hi guys, As I am trying to get into this Flex world, I am coming across to a few things where I need expertise advice like why and what should be done in an appropriate way. So here is one more question: why one should (not) use the following line of code and in what scenario's it could be

Re: [flexcoders] (TabNavigator component )Error #1009Cannot access a property or method of a null object reference

2008-07-10 Thread Manu Dhanda
Although I could not exactly understand like how you are proceeding with your application. But as about this error, it is coming because you haven't initialized something before you are trying to use it. as in this case, this.day.title = day schedule; You might haven't initialized this.day to

[flexcoders] Loading swf.. (Posting Again)

2008-06-19 Thread Manu Dhanda
Hii guyz, It's not an issue here, but I need someone's help to point me to the right tutorial where I can learn about loading swf. Also, the trick is that i have one introductory swf with user's making a few choices/selections from combobox's. Now, on some button click, I want to present my

[flexcoders] Loading swf..

2008-06-16 Thread Manu Dhanda
Hii guyz, It's not an issue here, but I need someone's help to point me to the right tutorial where I can learn about loading swf. Also, the trick is that i have one introductory swf with user's making a few choices/selections from combobox's. Now, on some button click, I want to present my

[flexcoders] Does IE have some problem?

2008-06-09 Thread Manu Dhanda
Hii guyz, I am just experimenting with some stuff as in here: http://flats.e-zone.co.in/ It is working very nicely in Firefox whereas if I 'll do couple of clicks frequently in IE, it keeps on jumping from one screen to another.(Play with clicking tabs and accordion). Am using IE version

[flexcoders] ToolTip for each row in a DataGrid

2008-06-08 Thread Manu Dhanda
Hii, How can I make a tooltip that will work for each row of datagrid?? Right now, the tooltip is displaying the same data for each row, as I point to some row. So, it is picking the data from the very first row that I point and once I move to any other row, it displays the same data. And once

RE: [flexcoders] ToolTip for each row in a DataGrid

2008-06-08 Thread Manu Dhanda
Of Manu Dhanda Sent: Sunday, June 08, 2008 9:16 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] ToolTip for each row in a DataGrid Hii, How can I make a tooltip that will work for each row of datagrid?? Right now, the tooltip is displaying the same data for each row, as I

Re: [flexcoders] Flex + Google Maps integration help needed.

2008-06-07 Thread Manu Dhanda
No worries guyz. The problem is now fixed with the release of v1.4 of google maps swc. Manu. Manu Dhanda wrote: Hii, Following the samples at google maps, I can display the map nicely. But, it doesn't have dragging functionality and I can't find anywhere that someone is adding/coding

[flexcoders] Flex + Google Maps integration help needed.

2008-06-07 Thread Manu Dhanda
Hii, Following the samples at google maps, I can display the map nicely. But, it doesn't have dragging functionality and I can't find anywhere that someone is adding/coding for it in any of the posts around. Here is part of my code: private function onMapReady(event:Event):void {

Re: [flexcoders] hiding a cell within a datagrid dynamically

2008-06-06 Thread Manu Dhanda
Here it is: mx:DataGrid id=mygrid dataProvider={initDG} mx:columns mx:DataGridColumn id=grant_year dataField=grant_year/ mx:DataGridColumn id=cashoutshares dataField=cashoutshares itemRenderer=mx.controls.CheckBox visible={!grant_year=='somevalue' implement ur logic here}/

Re: [flexcoders] hiding a cell within a datagrid dynamically

2008-06-06 Thread Manu Dhanda
? Thanks --- In flexcoders@yahoogroups.com, Manu Dhanda [EMAIL PROTECTED] wrote: Here it is: mx:DataGrid id=mygrid dataProvider={initDG} mx:columns mx:DataGridColumn id=grant_year dataField=grant_year/ mx:DataGridColumn id=cashoutshares dataField=cashoutshares itemRenderer

Re: [flexcoders] Flex + WebORB for PHP, A very strage problem

2008-06-05 Thread Manu Dhanda
this workaround: vo.aircon = (''+list[i].aircon).toLowerCase()=='true'; -Nick Matelli Amentra, Inc --- In flexcoders@yahoogroups.com, Manu Dhanda [EMAIL PROTECTED] wrote: Code for my Responder, where I am receiving the result: public function result(data:Object):void

Re: [flexcoders] Flex + WebORB for PHP, A very strage problem

2008-06-05 Thread Manu Dhanda
') { vo.aircon = true; } else if (list[i].aircon == 'false') { vo.aircon = false; } JF --- In flexcoders@yahoogroups.com, Manu Dhanda [EMAIL PROTECTED] wrote: Hii.. Anyone of you experts with a solution for my problem?? Am really worried for this little boolean problem. Manu

Re: [flexcoders] Flex + WebORB for PHP, A very strage problem

2008-06-04 Thread Manu Dhanda
) The former will not always convert to true (but will return null if it can't convert). Lastly, if you can't make it work, just try this workaround: vo.aircon = (''+list[i].aircon).toLowerCase()=='true'; -Nick Matelli Amentra, Inc --- In flexcoders@yahoogroups.com, Manu Dhanda [EMAIL PROTECTED

Re[flexcoders] ndering Google Maps in Flex

2008-06-04 Thread Manu Dhanda
Hii, I was just following the example given at Google Maps Flash API to render a MAP. Although I can display that MAP if I 'll put that code in my main mx:Application /. But if I put that same code in my some other component, say a panel, it doesn't display anything. Can someone explain me the

[flexcoders] Flex + WebORB for PHP, A very strage problem

2008-06-03 Thread Manu Dhanda
Hii, In short, In Weborb Mgmt Services, I can see the object having a value of boolean type correctly.( that is it is returned correctly from the db). But when I receive it on Flex side, all is returned as true. How should I resolve this? Appreciate your time.. to respond it. thanks. --

[flexcoders] Accordion, How to show it vertically like xx|yy|zz

2008-06-03 Thread Manu Dhanda
Hii Guyz, How can I have an accordion that will display the bars vertically as in xx|yy|zz... which property do I need to set in or where can I find the resources for that?? Thanks, Manu. -- View this message in context:

Re: [flexcoders] Flex + WebORB for PHP, A very strage problem

2008-06-03 Thread Manu Dhanda
, 2008 at 11:45 AM, Manu Dhanda [EMAIL PROTECTED] wrote: Hii, In short, In Weborb Mgmt Services, I can see the object having a value of boolean type correctly.( that is it is returned correctly from the db). But when I receive it on Flex side, all is returned as true. How should I resolve

[flexcoders] Event generation.. only after data returned from server side.

2008-06-03 Thread Manu Dhanda
Hii How can I achieve that any event should take place only after the data is loaded in my flex application. I am using an Accordion with a datagrid on my first loaded page. And if I 'll click on the other bars(of accordion) then randomly it happens as if the control remain fluctuating between

Re: [flexcoders] Casting Problem.. Type Coercion Failed

2008-06-02 Thread Manu Dhanda
that you are explicitly creating UserVO objects. Doug On Sun, Jun 1, 2008 at 6:35 AM, Manu Dhanda [EMAIL PROTECTED] wrote: Hii am writing a simple application where for logging in, am checking the values against the value objects contained in an ArrayCollection. While

Re: [flexcoders] Casting Problem.. Type Coercion Failed

2008-06-02 Thread Manu Dhanda
to cast everything back to their original types. If you have any solution to this return type[of String], please share it here. Thanks for your valuable info. Manu. Manu Dhanda wrote: Hii am writing a simple application where for logging in, am checking the values against the value objects

[flexcoders] Casting Problem.. Type Coercion Failed

2008-06-01 Thread Manu Dhanda
Hii am writing a simple application where for logging in, am checking the values against the value objects contained in an ArrayCollection. While if((evt.userVO.email == ModelLocator.ALL_USERS[i].email) (evt.userVO.pwd == ModelLocator.ALL_USERS[i].pwd)) returns true, then why it throws this

Re: [flexcoders] please need help with dataGrid and checkBox

2008-06-01 Thread Manu Dhanda
Use itemRenderer, inline or custom For example: this is your datagridcolumn mx:AdvancedDataGridColumn dataField=aircon headerText=AC width=50 itemRenderer=com.renderers.DistRenderer/ Here is this renderer implementation: DistRenderer.mxml ?xml version=1.0 encoding=utf-8? mx:VBox

[flexcoders] Panel with no borders. How To?

2008-05-31 Thread Manu Dhanda
Hii I need a panel with no border or say with border with ZERO width. How can I get this done? Thanks. -- View this message in context: http://www.nabble.com/Panel-with-no-borders.-How-To--tp17573772p17573772.html Sent from the FlexCoders mailing list archive at Nabble.com.

[flexcoders] Flex + WebORB for PHP

2008-05-30 Thread Manu Dhanda
Hii.. I just started with WebORB for PHP, put all the things in place. Now when I access my application, It takes me to faultHandler() in my responder. I am displaying Alert.show(In Fault: +info.fault.faultString); And the Alert fault string returned to me is something like this: In Fault:

Re: [flexcoders] How to scale my Application?

2008-05-27 Thread Manu Dhanda
I am not sure, if I could understand your problem correctly. What I understood is you want to resize your components accordingly, when your application is being resized. To achieve this, you just define the top, bottom, left, right to every child container. like mx:Panel

[flexcoders] Space around flex application in browser

2008-05-25 Thread Manu Dhanda
Hii.. In my application, I always got to have space around my container in my browser. While setting dock=true, I can avoid it for ApplicationControlBar, am still not able to find a way to get rid of it for my panels. Anyone who can point me in the right direction. Thanks. -- View this

[flexcoders] Flex + Cairngorm + ASSQL

2008-05-24 Thread Manu Dhanda
I am trying to use ASSQL in my sample application with Cairngorm. Now, am stuck at the point where my application will talk to the db and the responses returned by db. In my delegate class: public function getCategories( ): void { var call : AsyncToken = this.getCategoriesFromDB();

Re: [flexcoders] How to acess any component's properties?

2008-01-16 Thread Manu Dhanda
You need to enable the double click event for this component. And as Tom said, instead of this, you should use this(or this.thiscomponentid.editable= true) component's id. You modified example: mx:TextInput id=txtInput x=414 y=25 editable=false borderStyle=none color=#3B5598 text=yogi4yu

[flexcoders] Flex + WebORB for PHP

2008-01-15 Thread Manu Dhanda
Hii, I am trying to run the sample application for this combo. While am not getting any compile errors, I am constantly being presented by CHANNEL DISCONNECTED error. Any thoughts like where am going wrong? Thanks, Manu. -- View this message in context:

Re: [flexcoders] Flex + WebORB for PHP

2008-01-15 Thread Manu Dhanda
as directed on this page http://www.themidnightcoders.com/weborb/php/gettingstarted.htm. See the big red IMPORTANT section for details. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com Manu Dhanda wrote: Hii, I am trying to run the sample application

Re: [flexcoders] Cairngorm + RemoteObject + Java + BlazeDS.

2007-12-18 Thread Manu Dhanda
guidance will help. Thanks, Manu. Tom Chiverton-2 wrote: On Monday 17 Dec 2007, Manu Dhanda wrote: Using Cairngorm, do we anywhere need to define something like that: You'll have that call in your Delegate class. I didn't see that in the snippits of code you gave. -- Tom Chiverton

RE: [flexcoders] Cairngorm + RemoteObject + Java + blazeds.

2007-12-17 Thread Manu Dhanda
Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manu Dhanda Sent: Wednesday, December 12, 2007 9:27 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Cairngorm + RemoteObject + Java without FDS(LCDS

RE: [flexcoders] Cairngorm + RemoteObject + Java + BlazeDS.

2007-12-17 Thread Manu Dhanda
Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manu Dhanda Sent: Wednesday, December 12, 2007 9:27 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Cairngorm + RemoteObject + Java without FDS(LCDS

[flexcoders] Cairngorm + RemoteObject + Java without FDS(LCDS).

2007-12-12 Thread Manu Dhanda
Hii, Is that possible to use RemoteObject with Java in Flex using Cairngorm. As I tried to search for a working sample app. And with heaps of post around, none pointed me to the actual working example. So, before doing anything else, I am stuck with this question itself that whether it is

  1   2   >