Multiple component renderer in the advanced datagrid in the same column

Hi
All I want is to render multiple Components in the same column based on the rowIndex value.
Let me know if it is possible. Right now I am able to render the same components in the multiple rows in the same column.
Example for further clarification:
all in [] needs to be rendered as a compoennt
Name  Component-to-be-renedered  Chart-component
xyz       [ Combobox ]                        [piechart based on values]
abc       [List]                                    [Column Chart based on value]
Many Thanks,
Piyush

<mx:states>
  <mx:State name="firstComponentsSet">
   <mx:AddChild position="lastChild">
    <mx:Button />
   </mx:AddChild>
  </mx:State>
  <mx:State name="secondComponentsSet">
   <mx:AddChild position="lastChild">
    <mx:TextInput />
   </mx:AddChild>
  </mx:State>
         </mx:states>
<mx:Script>
  <![CDATA[
  override public function set data(value:*):void {
   super.data = value;
   currentState = '';
   // if data requires firstComponetns set
   currentState = 'firstComponentsSet';
   // else
   currentState = 'secondComponentsSet';
  ]]>
</mx:Script>

Similar Messages

  • I do not have the 'Advanced' tab on the menu bar. I am trying to change ringtone on my iphone 4s. Have done the following: Right cick on song, entered the start and stop times, but unable to proceed as need 'Advanced' tab in order to change to option.

    I do not have the 'Advanced' tab on the menu bar. I am trying to change ringtone on my iphone 4s. Have done the following: Right cick on song, entered the start and stop times, but unable to proceed as need 'Advanced' tab in order to change to option.

    You don't need to upgrade your software.  But if you're struggling with Spry, IMO you should cut your losses and switch to something better for the longrun.
    If you have a budget to work with, I highly recommend Project Seven's Pop-Menu Magic 3.  It's easy to use in DW CS4, 5, 6 or CC.  More importantly, it's bullet proof and works in all devices. 
    Pop-Menu  Magic3 by PVII (commercial DW extension)
    http://www.projectseven.com/products/menusystems/pmm3/index.htm
    If you don't have a budget to work with, you can roll your own menus with jQuery plugins.  A bit more effort on your part, but they perform better than Spry.
    jQuery Superfish
    http://users.tpg.com.au/j_birch/plugins/superfish/
    jQuery MegaMenu2
    DEMO:
    http://www.geektantra.com/projects/jquery-megamenu-2/
    DOWNLOAD:
    http://code.google.com/p/jquery-megamenu/
    Nancy O.

  • HT1386 I just loaded the latest version of itunes and now my Outlook notes won't sync and notes no longer appears in the advanced section of the info page

    I just loaded the latest version of itunes and now I cannot sync my notes from Outlook 2010 to my iphone.  Notes no longer appears under the advanced section of the info tab.  Since I have not had luck syncing in the cloud I always check the boxes and tell the sync to sync from my computer to my phone.  Does anyone know how to get this to work.

    When you connect your ipod up to the computer. It should show the device, usually with the name of the device, in my case 'jordan's ipod'. This should be on the row which shows 'songs', 'albums' e.t.c on the far right. There when you click on it it should go to a different screen showing a picture of your ipod along with two buttons - Update and Restore. Click update and it should take a 2 mins while your ipod is updated to the latest version of Ios.
    After updating te ipod see if there is a change in results.
    PS: make sure the device is active while syncing so keep tapping the screen.
    Sorry for any incorrect info, i have an ipod touch, but i've had experience with an ipod

  • On my mini ipad, I cleared the cookies/histories in the safari setting.  But what does the advance-setting of the clearing the website data does?  What's that used for? Thank you!

    On my mini ipad, when I'm on the internet -- a few times I will see a blue small pop-up boxes telling me to allow down/load or add something like the bubble-splash game or something similar.  I jusr click ignore and it goes away.. I'm not sure why it's showing up lately.. I'm not sure if it's a virus or hacked in or a web brower matter..
    Should I go to the cookies/histories in the safari setting and have it cleared out?  Will that help resolve that?? 
    And what does the advance-setting of the clearing the website data does?  Sorry, I'm not familiar.. what's is that used for? Should I use that feature as well?? Thank you!

    This indicates corrupt files.
    A restore should resolve.

  • What are the advancements made in the iCloud

    What are the advancements made in the iCloud offering in the last 3 years?

    Read http://en.wikipedia.org/wiki/ICloud

  • Where is the advance preferences in the brand new iMovie? it used to be in that button area. i need to do picture in picture!

    where is the advance preferences in the brand new iMovie? it used to be in that button area. i need to do picture in picture!

    This should help you.
    https://discussions.apple.com/message/23468325#23468325

  • Add the "advanced search' button the navigation pane (left hand column Adobe Reader XI)

    Hi
    Is it possible to add the "advanced search' button the navigation pane (left hand column in Adobe Reader XI)? If yes, how is this done?
    Regards
    Andrew

    Thanks for your response.
    May you can forward this as to whoever looks after improving the Adobe product. It would be very useful to have it available on the navigation pane. At the moment the 'advanced search' feature opens up outside the PDF and is a pain to use.
    Regards
    Andrew

  • Why does Firefox sometimes still tell me that I have cache to clear in the Advanced tab of the Options menu after I completely clear it using Clear Recent History?

    I always have the time range in the Clear Recent History window set to "Everything", too.

    While I didn't know about the about:cache page, it doesn't help me understand why Firefox is doing this, and how to fix it. Also, as I said in my question, I already knew about the cache information in the Advanced tab of the Options menu. I was trying to imply that I sometimes have to clear it using both the Clear Recent History feature and in the Advanced tab of the Options menu, because using Clear Recent History doesn't delete it all.

  • Multiple data sources for a (advanced)datagrid?

    Hi all,
    I have two arrays of objects coming in from two different sources keyed on a single column called "id". They have the exact same column structure. I want to show these in a grouped column structure in advanced data grid. The question is can I do that without manually merging the two arrays?
    Concrete example:
    Array1: [{id:1, name:"Cooper", zip:"94536"},
                 {id:2, name:"Corolla", zip:"94404"}]
    Array2: [{id:1, name:"One", zip:"94555"},
                 {id:2, name:"Camry", zip:"94403"}]
    This will look like:
    Id
    Name
    Zip
    Source1
    Source2
    Source1
    Source2
    1
    Cooper
    One
    94536
    94555
    2
    Corolla
    Camry
    94404
    94403
    I would like to do this without creating an array like:
    [{id:1, name1:"Cooper", name2:"One", zip1:"94536", zip2:"94555"},
    {id:1, name1:"Corolla", name2:"Camry", zip1:"94404", zip2:"94403"}]
    Charts are quite good at this since you can assign different data sources to different series and the axis defines the key on which the data will be merged. However, I could not find anything similar for tables.
    Any pointers?
    Thanks so much!

    Come to think of it, is this even possible? How does a datagrid use its dataField parameter to lookup data? I am guessing data_array[row_index][col.dataField] would determine the value of a single cell at row_index and col. If so, my naive approach would require me to override the bracket operator so that the appropriate value is returned..
    e.g. when a simple array of objects is used, you have [{name:John, lastname:Smith}], datagridcolumns dataField is then set to "name". Now I will have two separate arrays:
    arr1: [{name:John, lastname:Smith}]
    arr2: [{name:Smith, lastname:John}]
    mergedarray will have a reference to both of them. Then when getKey("name", 1) is called, it will return a special key which can be used to access the name property from array 1, something like "name1". If I cannot override the bracket operator, mergedarray[0][name1] will return nothing.
    I remember reading somewhere that this kind of override is not possible. Any ideas?

  • Why is there nothing in the advanced tab of the options? I click on the tab for advanced but there is nothing there.

    Basically I need to go on the advanced options so I can disable the smoooth scrolling, because I don't like it, but whenever I go to tools/options/advanced it is just blank. On every other tab, like general, there are options but on advanced there is nothing. Help?

    Try to start Firefox in [[Safe mode|Safe mode]]. This mode disables all extensions, user customizations, hardware acceleration, etc. temporarily for diagnostic and troubleshooting. If Firefox works fine in Safe Mode, then this is likely an add-on issue. Restart Firefox in normal mode, then type "About:addons" (without the quotes) in the address bar. Disable your extensions one by one, restarting Firefox between each one, until you find the trouble maker. Once you do, you can disable that add-on and report the issue to that add-on's developer.
    A few other basic trouble shooting things you can try is this:
    Run all Windows Updates, install all needed service packs, etc.
    Update your graphics driver (Firefox uses your graphics card for some rendering, and an out of date graphics card driver can cause problems. [https://support.mozilla.org/en-US/kb/how-do-i-upgrade-my-graphics-drivers https://support.mozilla.org/en-US/kb/how-do-i-upgrade-my-graphics-drivers].
    Update all your plugins (Flash, Java, etc.): [http://www.mozilla.org/plugincheck/ http://www.mozilla.org/plugincheck/].
    Download and Install MalwareBytes Anti-Malware, run a full Scan. [http://www.malwarebytes.org/ http://www.malwarebytes.org/]. This helps check that there are no viruses on your computer causing issues. You can uninstall this program after you clean off any infections.

  • The Tools , Options then the Advanced Tab, that the Allow 3rd Party to downlaod updates is missing.

    I updated Firefox to 16.0.1 and then I checking to see that the download went okay and according to the download history everything went okay, however on the Tools, Options then Advanced Tab, that do you want to Allow 3rd Party to download is missing, I don't know what happened. On the last download the 15.0, this component downloaded, and I checked it so that I can download the updates.
    Do I need to uninstall this Firefox and reinstall it? Did I get a corrupted version?
    The update worked okay on my laptop & my husband computer but not mine.
    Please contact me.
    Thank you,
    Mrs. Mumm
    my email is: [email protected]

    Can you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    *https://support.mozilla.org/kb/how-do-i-create-screenshot-my-problem
    Use a compressed image type like PNG or JPG to save the screenshot.
    To see all history and cookie setting, you can use:
    *Tools > Options > Privacy > Firefox will: "Use custom settings for history"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • No longer able to access the "Advanced" options via the Inspector Chart Series Advanced sequence

    In iWorks9 Numbers in attempting to add trendline to a line chart I am suddenly no longer able to access the options under "Advanced" via the Click On Chart Line>Inspector>Chart>Series>Advanced sequence because the triangle button adjacent to Advanced is not highlighted and does not open up when clicked upon. Ideas?

    well ... I spent some time this afternoon repairing disk permissions, checking application preferences, etc. and don't think I found anything directly related to this problem but after a few hours I returned to Numbers and lo and behold something changed and everything is working fine ... and I have no idea what was the cause and what was the fix but I'll take it. Heisenberg was right.

  • Firefox crashes whenever I click on the "Advanced" tab of the options menu.

    My proxy settings were changed by a virus. I have removed the infection, but I cannot enter the advanced options menu to change them back. Every time I open the options menu and click on the advanced tab, Firefox immediately crashes. I have already tried un/reinstalling the program, and running firefox with addons disabled, but none of them keep it from crashing. The crash id's are different each time as well.

    Try to clear the cache.
    Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    You may need to clear the files in the cache location as seen on the about:cache page manually.
    C:\Users\&lt;user&gt;\AppData\Roaming\Mozilla\Firefox\Profiles\&lt;profile&gt;\

  • Setting off the advance payment with the payment

    Hi,
    when i run the F110 for payment say for XX vendor suppose there is a advance given to him before i want to set off that from the Vendor balance at that time, is there ant possibility for that?
    Gayani

    Hello,
    Yes, you can set off advance payments against your invoices. You need to do is configuration will do for advances is nothing but sp.gl transactions.
    Ex: Adv given for 50,000 against inv for 1,00,000/-. while paying rest of the bal you have to pay 50000/- and system will also remind you there is a advance. You need to do is in F-44 you have to clear open item for advances
    try this if u have any querry pl revert
    thanks
    Para

  • E3000 Question, in the advanced settings, in the Storage section there is a Media Server tab

    Anytime I add files to the usb drive that is connected to the router I have to refresh the database for my Sony Media Player to see it, there is a setting to automatically refresh but the shortest amount of time is 2 hours, is there a way to change that so it refreshes every 1/2 hour?  TIA

    I guess that the shortest amount of time is just really up to 2 hours unless Linksys will release a new fimrware and make it half an hour. 
    Help, learn and share

Maybe you are looking for

  • Commenting in Adobe Acrobat 9 Pro

    I have to send pdf documents which allow commenting by those reviewing the document.  However, I need to ensure that when the people are adding comments to the document they cannot copy the content or the images.  When I set the password for permissi

  • Notebook Lenovo V570c и Windows XP

    Здравствуйте , раз уж мне выпала честь открыть первой темой этот раздел. Имею ноутбук V570c В использовании в рабочих целях выявилась не обходимость пользоваться старыми программами и соотвественно к ним требуются старые ОС. Моя конкретно модификация

  • Odd Spacing in IE 6 and 7

    I always seem to have this problem. My new site: www.simonephysicalmedicine.com has odd spacing problems in Internet Explorer 6 and 7. I've validated my pages to no avail. The site is online. Can someone please help me. If possible can you explain yo

  • Is there a way to enable the "protect tones" box while working in Lab mode for dodging and burning?

    Is there a way to enable the "protect tones" box while working in Lab  Color mode for dodging and burning?

  • Wants a report of characteristics values for material master

    Dear sir, how can i get the report of characteristic values of a materials. pratik