[flexcoders] Pie Chart help

2006-05-10 Thread Dogra, Daman
Title: Pie Chart help Hi All, I have a pie chart which looks pretty similar to the basic pie chart on the flex charting explorer http://flexapps.macromedia.com/flex15/chartexplorer/explorer.mxml?versionChecked=true By default most pie charts seem to have a grey colored shadow in the

[flexcoders] Inverted DataGrid

2005-11-02 Thread Dogra, Daman
Title: Inverted DataGrid Hi, Does anybody know a way to define rows instead of columns for a datagrid ? I have a DataProvider (an array of objects called loansArray) which is created like this. var objOne:Object = new Object(); objOne.mortgage = {prodId:19, productCode:30J,

RE: [flexcoders] Newbie can't find selectedItem in comboBox when dataProvider is remoteObject

2005-07-01 Thread Dogra, Daman
Try kingdoms_cb.selectedItem.value.toString() -Daman -Original Message- From: pmarstonuoa [mailto:[EMAIL PROTECTED] Sent: Friday, July 01, 2005 10:26 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Newbie can't find selectedItem in comboBox when dataProvider is remoteObject Hi

RE: [flexcoders] Newbie can't find selectedItem in comboBox when dataProvider is remoteObject

2005-07-01 Thread Dogra, Daman
Try kingdoms_cb.selectedItem.value.toString() -Daman -Original Message- From: pmarstonuoa [mailto:[EMAIL PROTECTED] Sent: Friday, July 01, 2005 10:26 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Newbie can't find selectedItem in comboBox when dataProvider is remoteObject Hi

RE: [flexcoders] Newbie can't find selectedItem in comboBox when dataProvider is remoteObject

2005-07-01 Thread Dogra, Daman
There are couple of ways I check the payloads going back and forth 1) Flex Builder IDE has the Network monitor (Last tab in the Results window) which does the trick. 2) You could set remote-objects-debugtrue/remote-objects-debug in the flex-config.xml and see debug statements, including

[flexcoders] Problem using removeNode()

2005-06-30 Thread Dogra, Daman
Title: Problem using removeNode() Hi All, I am facing a Coder's block here and would appreciate help . This is kind of long and I apologize for the same . Using actionscript I am looping some nodes (called location) in a XML document and based on some condition would like to remove a

[flexcoders] RE: Problem using removeNode()

2005-06-30 Thread Dogra, Daman
; } } -Daman -Original Message- From: Dogra, Daman Sent: Thursday, June 30, 2005 10:39 AM To: 'flexcoders@yahoogroups.com' Subject: Problem using removeNode() Hi All, I am facing a Coder's block here and would appreciate help . This is kind of long and I apologize for the same

RE: [flexcoders] Problem using removeNode()

2005-06-30 Thread Dogra, Daman
Title: Message It surely would I mentioned I was having a coder's block :) I had to modify the code a little . The "locNode=locNode.nextSibling"in the for(.) statement made it jump two nodes instead of one . So here's what I did...took off that line from the for () statement and

[flexcoders] Scoping issue in event handler ?

2005-06-29 Thread Dogra, Daman
Title: Scoping issue in event handler ? Hi, I am trying to set an external variable within an onLoad() event handler and later trying to access it as below . The variable in question here is newXML . After setting it within the eventHandler, trying to access it outside the eventHandler