Maximising a panel within a panelDashboard

Hi,
I'm going through the downloaded source for the demo page at :
http://jdevadf.oracle.com/adf-richclient-demo/faces/visualDesigns/dashboard.jspx
and it appears that when the 'maximize' button on a panel is clicked, the DemoDashboardBean.maximize() method uses an af:switcher to simply switch from a facet containing the grid of panelBoxes to a facet containing one large panelBox. This panelBox is then assigned the same page fragment as the as the orginal panelBox in the dashboard.
What if I have state within the panelBox that I'm 'maximizing'? I plan to have dynamic content in most panels, and in most cases, a dynamic region. What if the user decides to maximise the panel shortly after entering some content? I suspect the demo panelDashBoard doesn't support this. Is there some nice programmatic way to move the original panel into this new position? Or perhaps a different approach for implementing the maximize?
Thanks,
Barry.
Edited by: cafelatte on Aug 24, 2009 4:54 PM

Small update - I still haven't found what I feel to be a clean solution, but this hack seems to work..
Basically, when the user wants to 'maximise' a window, I render all but the target panel in the dashboard, set the number of colums to 1, and set the rowHeight to 100%. The percentage height appears to be obeyed by ie, firefox, opera and chrome (although I've only access to a vista box here). This feels really messy though. I already have to hold the state of the dashboard for my sidebar controls to work. Now I have to hold another record of the state, so I can restore all the panels to their various shown/hidden/order attributes.
The separate panelbox (as in the demo) would be a much, much nicer solution - But so far I haven't found any info on how to programmatically switch two components or duplicate the content of one. Last appeal for help before I let this thread die...
Thanks,
Barry.

Similar Messages

  • Collapsible Panel within another Collapsible Panel HEIGHT ISSUE

    Having an issue with the height of a collapsible panel that has another collapsible panel within it not adjusting. I am using Dreamweaver CS5.
    When I try the fix of changing line 431 in .js  (where you change "px" to "auto" where it says this.content.style.height = this.toHeight + "auto";) it does not work in IE7 or Firefox. If I change  the height inferences in the .js on lines 392, 431, and 439--it  worksperfect in Firefox, however it throws an error in IE7. Anyone have a  clue???
    Here is my page: http://www.l-3choosewisely.com/dev/
    username: owl
    password: l3ae2011
    Help would be greatly appreciated. PLEASE PLEASE PLEASE help me!

    For right now I have "semi-fixed" the issue, by adding a min-height to my second collapsible panel set, but really am NOT HAPPY
    with it... please help me, it has to be something with the auto-height... I know I am looking right at it and just not seeing it.

  • Updating a panel within a container

    I am attempting to update a panel within a container. I have tried to search the forum but couldn't find a solution. The codes are listed below. What am I doing wrong?
    package test;
    import java.awt.*;
    import java.awt.Graphics;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.plaf.FontUIResource;
    import javax.swing.plaf.ColorUIResource;
    class Template1 extends JFrame {     
         private static final Dimension screenSize = Toolkit.getDefaultToolkit ().getScreenSize ();
         private JLabel numLockKey, capsLockKey, mode;
         protected Container pane;
         protected JPanel buttonPanel, basePanel;
         public Template1() {
              super("Soybean Candles -- Authorized Personnel Only");                
            buildLayout();       
              setSize(screenSize.width, screenSize.height);                    
                 setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                 setResizable(false);             
              show();                              
         private void buildLayout() {
              pane = getContentPane();
              pane.setLayout(new BorderLayout());          
              basePanel = new JPanel(new BorderLayout());
              basePanel.add(new JLabel(new ImageIcon("C:/GUI/Images/plogo.jpg")), BorderLayout.CENTER);
                pane.add(panel_1(), BorderLayout.NORTH);
                pane.add(basePanel, BorderLayout.CENTER);            
         private JPanel panel_1() {
              buttonPanel = new JPanel(new FlowLayout(FlowLayout.LEFT, 20, 10));          
              buttonPanel.setBackground(Color.decode("#526dad"));
              JButton buttons[] = new JButton[3];
              buttonPanel.add(createButton(buttons[0], "TIME CLOCK", new TestAction()));
              buttonPanel.add(createButton(buttons[1], "LOGIN", new LoginAction()));
              buttonPanel.add(createButton(buttons[2], "EXIT", new TestAction()));
              return buttonPanel;
         private JButton createButton(JButton btn, String displayTxt, AbstractAction action) {
              Dimension dim = new Dimension(100, 40);
              btn = new JButton(action);
              btn.setText(displayTxt);          
              btn.setPreferredSize(dim);
              btn.setMaximumSize(dim);
              btn.setMinimumSize(dim);
              btn.setBorder(BorderFactory.createLineBorder(Color.white, 2));
              btn.setBackground(Color.decode("#3e4b84"));
              btn.setForeground(Color.white);          
              btn.setFocusPainted(false);
              btn.setActionCommand(displayTxt);
              return btn;          
         private JPanel panel_2() {          
              basePanel = new JPanel(new BorderLayout());
              basePanel.add(new JLabel(new ImageIcon("C:/GUI/Images/plogo.jpg")), BorderLayout.CENTER);
              return basePanel;
         public static void main(String args[]) {
              UIManager.put("Label.font", new FontUIResource(new Font("Arial", Font.PLAIN, 12)));
              UIManager.put("Button.font", new FontUIResource(new Font("Arial", Font.PLAIN, 12)));
              Template1 tpl = new Template1();
         class TestAction extends AbstractAction {             
                 public void actionPerformed(ActionEvent e) {
                      System.out.println("button pressed");
            class LoginAction extends AbstractAction {
                 public void actionPerformed(ActionEvent e) {
                      basePanel.invalidate();
                    basePanel = new JPanel();
                   basePanel.add(new JLabel("test"));
                   basePanel.repaint();               
    }

    You're creating a new panel every time an action is performed. That panel is never going to be visible unless you add it to the frame.
    Either remove the old panel and add the new panel or add the label to the panel you already have without creating a new one. Then call validate on the whole frame, and it should work.

  • Disable all the components of a panel ( panels within the main panel )

    Hi guys!
    I have a problem!
    i have to disable all the components of a panel. please note that i am also having panels within the main panel. please tell me how to do that!!!
    its urgent!!

    Hi guys!
    I have a problem!Wouldn't have figured that one out by myself ...
    its urgent!!No, it's not.
    You know, a panel is most often a subclass of Container, so all you need to do is recursively disable all child components. The methods getComponents and getComponent are very helpful when trying to access child components. Code likeif ( comp instanceof Container )
      // do soemthing
    }will help in determining whether a child component is yet another Container.

  • Panel within a Panel

    Hi,
    how can i add a panel within a Panel or to update the second panel within a panel having the same frame.
    pls advise.
    bunch of thks

    I don't know if this is what you're wondering, but this code adds a panel to a panel.
    JPanel panel = new JPanel();
    JPanel subPanel = new JPanel();
    panel.add(subPanel);Josh

  • How to load an Applet on a panel, within another Applet

    Hi,
    I want to know if and how it is possible to load an applet/application on a Panel within another Applet/Apllication.
    Who can help me?
    tnx

    You want to use an applet inside an other applet?
    Applet extends Panel
    you can take the source of the second applet, and instead of extending Applet extends Panel, and call the init method from the first applet.
    Hope this help

  • Spry Tabbed XML data panels within HTMLPanel not working.

    Many thanks for reading.
    s
    I trying to provide a rapid solution using adobe's samples
    to make Spry Tabs work within an html panel (in order to avoid
    many links in my page).
    I am using the following code:
    initial page with html panel with the ready products.js to parse the links:
    <script src="../SpryAssets/xpath.js" type="text/javascript"></script>
    <script src="../SpryAssets/SpryData.js" type="text/javascript"></script>
    <script src="../SpryAssets/SpryPagedView.js" type="text/javascript"></script>
    <script src="../SpryAssets/SpryDOMUtils.js" type="text/javascript"></script>
    <script  src="../SpryAssets/SpryHTMLPanel.js" type="text/javascript"></script>
    <script language="JavaScript" type="text/javascript" src="../SpryAssets/SpryDataExtensions.js"></script>
    <script src="SpryNestedXMLDataSet.js" type="text/javascript"></script>
    <script src="../SpryAssets/products.js" type="text/javascript"></script>
    <link rel="stylesheet" type="text/css" href="TabbedPanels/SpryTabbedPanels.css"/>
    <script src="TabbedPanels/SpryTabbedPanels.js"></script<script type="text/javascript">
    var ds1 = new Spry.Data.XMLDataSet("ajaxbibliaxmlbridgetitle.php", "root/row[katigoria=1]", {sortOnLoad: "ID_BIBLIOU", sortOrderOnLoad: "ascending"});
    var pv1 = new Spry.Data.PagedView( ds1 ,{ pageSize:10 });
    var pv1PagedInfo = pv1.getPagingInfo();
    //var TabbedPanels1 = new Spry.Widget.TabbedPanels();          
    </script>
    </head>
    <body class="twoColFixRtHdr">
    <div id="container">
    <div id="sidebar1">
      <div id="productPageLinks">
       <ul>
        <li><a href="index.php">Index</a></li>
        <li><a href="booklist.php">Product List</a></li>
            <li><a href="test.php">Σχετικά με τη Βιβλιοθήκη</a></li>
       </ul>   
      </div>
    </div>
    <div id="mainContent">
    <br />
    <div class="HTMLPanelLoadingContent"> Waiting</div>
    <div class="HTMLPanelErrorContent"> error </div>
    </div>
    </div>
    </body>
    </html>
    Products.js (adobe'S change to can load xml dataset)
    var mainPanel = null;
    // Our initialization function which unobtrusively attaches
    // click handlers on the product links within the page.
    function InitProductPage()
    mainPanel = new Spry.Widget.HTMLPanel("mainContent" , { evalScripts: true });
        var observer = {onPostUpdate: function(){ Spry.Data.initRegions('mainContent'); 
    mainPanel.addObserver(observer);
    // For every link on the page which points to a product page,
    // attach an onclick handler that will intercept clicks and
    // and fire off a request to load the URL via the HTMLPanel.
    // For these links, we want to load the static product page
    // and extract out the content underneath the "mainContent"
    // node.
    Spry.$$("#productPageLinks a").addEventListener("click", function(e)
      mainPanel.loadContent(this.href, { id: "mainContent" });
      return false;
    }, false);
    // For every link on the page which points to a product HTML
    // fragment, attach an onclick handler that will intercept clicks and
    // and fire off a request to load the URL via the HTMLPanel.
    // For these links, we are loading HTML fragments, so there is no
    // need to specify an ID to extract out. The HTMLPanel will insert
    // all of the content recieved.
    Spry.$$("#productFragmentLinks a").addEventListener("click", function(e)
      mainPanel.loadContent(this.href);
      return false;
    }, false);
    // Add our InitProductPage() function as a load listener
    // so that it gets executed once the page has fully loaded.
    Spry.Utils.addLoadListener(InitProductPage);
    XML data and stuff all loaded correctly
    What I am trying to do is to load a second page from a link in my initial page
    that contains a Tabbed Panel.
    The page loads but no panel functionality exists. The first Panel load correctly but behaves as a simple html page .
    I have searched several hours the forums and playing around by moving the definition of Spry.Widget.TabbedPanels within
    the initial HTMLPanel page and other spots but this  produced js errors as expected (because the tab panel definitions exist in bookcategories.php)
    which is loaded only when it is called.
    Any ideas?
    Page to load is like this :
    <bookcategories.php>
    <link rel="stylesheet" type="text/css" href="TabbedPanels/SpryTabbedPanels.css"/>
    <script src="TabbedPanels/SpryTabbedPanels.js"></script>
    <script language="JavaScript" type="text/javascript" src="../SpryAssets/SpryDataExtensions.js"></script>
    </head>
    <body >
    <div id="container">
    <div id="mainContent">
             <div class="TabbedPanels" id="TabbedPanels1">
      <ul class="TabbedPanelsTabGroup">
              <li class="TabbedPanelsTab">SOmething ... </li>
              <li class="TabbedPanelsTab">Something else </li>
    <
      </ul>
      <div class="TabbedPanelsContentGroup">
              <div class="TabbedPanelsContent">Blah Blah
                  <div spry:region="pv1" id="bibliapv"><br />
                    <br />
                  <div spry:state="ready">
                      <table width="775" height="42"  >
                        <tr style="color:#900"; >
    <th etc>
                        </tr>
                        <tr spry:repeat="pv1" spry:even="even" spry:odd="odd">
                          <td >       {ID_}
                         </td>
                          <td>{Writer}</td>
                          <td>{Book_Title}</td>
                           </tr>
                      </table>
                    </div>
                  </div>
              <div class="TabbedPanelsContent">Tab 2 Content</div>
    <div class="TabbedPanelsContent">Tab 3 Content</div>
       <div class="TabbedPanelsContent">Tab 4 Content</div>
      </div>
    </div>
    </div>
    <br class="clearfloat" />
    </div>
    <script type="text/javascript">
    var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1");
    </script>
    </body>
    </html>
    Many thanks

    Ok I went back through everything and checked to make sure my
    files were in the right places both my SpryTabbedPanels.css and my
    SpryTabbedPanels.js are in the SpryAssets folder and they work fine
    until I try and add data from an xml file to them then the tabs
    populate with the info but become unclickable and the content area
    has every bit of content in on tab. Below is what I have let me
    know what I'm doing wrong I am using Spry 1.6
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml"
    xmlns:spry="
    http://ns.adobe.com/spry">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Untitled Document</title>
    <script src="SpryAssets/xpath.js"
    type="text/javascript"></script>
    <script src="SpryAssets/SpryData.js"
    type="text/javascript"></script>
    <script src="SpryAssets/SpryTabbedPanels.js"
    type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    var ds1 = new Spry.Data.XMLDataSet("solutions3.xml",
    "solutions/solution");
    //-->
    </script>
    <link href="SpryAssets/SpryTabbedPanels.css"
    rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div spry:region="ds1">
    <div id="TabbedPanels1" class="TabbedPanels">
    <ul class="TabbedPanelsTabGroup">
    <li spry:repeat="ds1" class="TabbedPanelsTab"
    tabindex="0">{name}</li>
    </ul>
    <div class="TabbedPanelsContentGroup">
    <div spry:repeat="ds1"
    class="TabbedPanelsContent">{desc}</div>
    </div>
    </div>
    </div>
    <script type="text/javascript">
    <!--
    var TabbedPanels1 = new
    Spry.Widget.TabbedPanels("TabbedPanels1");
    //-->
    </script>
    </body>
    </html>

  • Drag/drop & maximize Panels within a Tile

    Hi Guys,
    I've had a look at WASI's Dashboard, and I would like to create a much simpeler version in Flex 4.
    The begin is simple: Create a mx:Tile, dump a couple of s:Panels, everything's alligned properly. Looks good.
    I'm confused in the next steps:
    How to make the Panels 'movable'? Like: Drag the first s:Panel, and drop it as last.
    How to make the Panels 'Maximizable' without pushing the other object away? I can edit the PanelSkin, ad a maximize button, but just changing size isn't enough... somehow this panel should be "lifted out" first before resizing. But how?
    Can someone give me any pointers?

    When you say Tile do you mean a tilelist ? as Tilelist allows you to drag items around.
    To Maximise over the tilelist without touching the tile arrangement one approach would be to have a canvas with 1 child panel(maxpanel) that is not displayed.
    maxpanel.top=maxpanel.left=maxpanel.right=maxpanel.bottom=0;
    on maximize a tiled panel
    maxpanel = mytilepanel;
    mymaxcanvas.addchild(mytilepanel);
    on minimize
    mymaxpanel.removeChild(maxpanel);
    well thats just off the top of my head.
    I have some old code somewhere I did to drag tiles around whilst maintaining their original index positions which was good to do a reset, so i'll see if I can find it and put it up for you.
    David.

  • "Can close all" option not working for content panel within accordion widget

    Hi. I can close an accordion menu by clicking the header but it won't close by clicking on the content panel itself (even though I have can close all selected in the flyout.) I've seen tutorials where it works but I can't replicate. Seems like a bug.
    Thanks for any ideas on how to fix or a workaround.
    I'm on the CC 2014.3 release. Mac OS 10.10.2
    P

    Hello,
    if you using OAW (Outlook AnyWhere) check the authentication method
    get-OutlookAnywhere -Identity "<Servername>xpv00645\RPC (Default Web Site)" | fl *AuthenticationMethod*
    I think it is set of NTLM or Negotiate.
    Outlook 2007 has negotiate
    problems at an OAW connection
    authentication.
    Change the authentication to NTLM for
    the internal and Basic for the extenal method.
    You need to reconfigure the Outlook Exhange settings to anonymous authentication and in the proxy settings to default authentication

  • Pass parent frame to Dialog, from panel within CardLayout

    Hi!
    I have a main class that uses card layout (EntryPoint.java), and where I instantiate all my panels from. All my panels(cards) are seperate classes.
    I have a login class(card) that I call from my main class (LoginClass.java). When it displays and the user wants to change his/her password - I created a custom dialog to pop up and handle the request. This custom dialog is another class on it's own.
    My problem is I cant seem to pass the frame to my dialog. I created a frame only in my main class, seeing the login panel is only a card displayed in my Main class.
    I have followed the example at http://java.sun.com/docs/books/tutorial/uiswing/components/dialog.html
    Can anyone please assist me? I would greatly appreciate it. ;o)
    Here is some code if it helps:
    EntryPoint.java -----------------------------
    public class EntryPoint extends JFrame {
        //instantiate the main frame
        public JFrame frame = new JFrame();
        //create a panel to add all of the components to
        private JPanel cards = new JPanel();   
        LoginClass lc = new LoginClass();
        public EntryPoint() {
            cards.add("login", lc);
            //add the panel to the frame
            frame.getContentPane().add(cards, BorderLayout.CENTER);
            frame.getContentPane().add(buttons, BorderLayout.PAGE_END);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
    }LoginClass.java ----------------------------------
    public class LoginClass extends JPanel  {
        private JButton loginB = new JButton("login"');
        CustomDialog customDialog;
        public boolean loginProceed = false;
        public LoginClass() {
            //this is where it shows in the example i have to pass parameters
    //        customDialog = new CustomDialog(frame, "geisel", this);
    //        customDialog.pack();
            this.setLayout(new GridLayout());
            this.add(loginBut);
            //set action listener to button ..................
        public boolean loginBut_actionPerformed(ActionEvent e) {
           //if password needs to be changed, invoke the dialog with this text
    //                        customDialog.setLocationRelativeTo(frame);
    //                        customDialog.setVisible(true);
    //                        String s = customDialog.getValidatedText();
    //                        if (s != null) {
    //                            //The text is valid.
    //                            setLabel("Congratulations!  "
    //                                     + "You entered \""
    //                                     + s
    //                                     + "\".");
    }My actual dialog is pretty much the same as
    http://java.sun.com/docs/books/tutorial/uiswing/components/example-1dot4/CustomDialog.java
    Thanx for your help and time ;o)

    Change the constructor for LoginClass and give it an argument:
    public LoginClass(JFrame frame) {
        customDialog = new CustomDialog(frame, "geisel", this); // this line looks weird but without the code I cannot say for sure that it is wrong.
        customDialog.pack();
        this.setLayout(new GridLayout());
        this.add(loginBut);
    }By the way.. if you are instantiating a JFrame in the main class, why does the main class also extend JFrame? Pick one pattern or the other and stick with it... I recommend that you NOT extend. So your JFrame oriented class should have a member JFrame and the JPanel oriented class should have a JPanel. This is not the way most people do it, but it is better design, even if only marginally so.
    Drake

  • How do you add a horizontal tabbed panel within the eCommerce "Individual-Product-Large" page?

    I am a new user to Business Catalyst and Muse web design... So sorry if this seems like a daft question
    I have created a website in Muse.
    Then I created the template page that BC can reference for the eCommerce area and inserted the tag to hold content from the BC - {tag_pagecontent}.
    I then created products and catalogues, grouped products etc - all groovy. Working great.
    I then decided that it was time to style the page as per my design - snap shot below (similar to how i did for the blog - which works great).
    So i started with the page layout.
    I managed to move the content from left to right and change widths, i then started to try to create the tabbed section in the same way and ba bowwwwww - epic fail
    I want to use a "Horizontal Tabbed Widget" as per the one i picked from Muse.
    I have a LOT of information that is unique for each product, so rather than have this huge page, its just easier to show it this way - plus it seemed pretty standard on other eCommerce site...
    But I am stumped.
    I'm so confused, i thought if i copied what seemed like a standard on other sites it would be fairly easy, especially since Muse has the Horizontal Tabbed widget - i though it would just come over to BC.
    Except, i can't get it to work...
    I'm not sure what i am doing wrong?
    A) I would like the "Individual-Product-Content" to look like the Horizontal Tabbed Widget in the screen shot of the original design from inside Muse below - im sure its possible.
    The Tabbed section is unique to the product, as is the description and the little icons bottom left and the ingredients.
    B) then the next conundrum is that each tab would have unique text to the product it is showing, how do i add those fields into the BC Product menu where the product is created and added to catalogues etc.
    I have searched and searched the web and have found nothing that is helpful.
    Anything that i have found only does a portion of what i need.
    I found something on jQuery - should i be using this?
    Or can i create the same thing using CSS?
    Or should i be combing jQuery with the BC Web Apps?
    I'd really just like help where i can be pointed in the direction of the instructions to achieve this.
    I even downloaded the BC instruction manual, which also has nothing.
    I'm sure that the answer is very very simple - but i'm just not experienced enough and after a week of trying to find the solution i thought i'd ask the experts!
    I really do appreciate anyone who takes the time to help me out.
    Thanks heaps!
    Muse Design:
    Current layout in Adobe BC:

    HI DAVIDFON, Thank you for replying to my post.
    I am using Adobe Business Catalyst to build the eCommerce component of the site. This is where i came a cropper.
    I'm not using Bootstrap or Foundation. I have done a little research on both and am wondering how easy it is to add the tabbed section to Business Catalyst with Bootstrap? nothing really explains this online...
    I'm also wondering how easy it is to put in custom information in the tabbed sections when the fields and tags are not available in Business Catalyst.
    Do you know if i can add custom fields and new tags in Business catalyst when you add products in BC?
    I'm sure you can but i can't find any reference to this online either?
    Thanks for your help.

  • How to open remote front panel of vi's within an executable from an executable.

    How do I remotely open front panels of subvi's contained within an executable, where both computers just have LabVIEW Real Time loaded (programs are run as executables)? I want to use the Method: Remote Panel Open Connection to Server to make this work. I have been getting error 1032 "VI Server Access Denied". I do not want to use the web page method (connection is too slow when controlling front panel objects and I can not programmatically exit out (release control of vi) of the web page).
    Ex. 
    PC1: Has executable1 using Remote Panel Open Connection to Server Method etc. code inside. This program will make a call to executable2 (on PC2) to open up different vi front panels (within executable2), so the controls can be changed from PC1. I want to be able to make changes to the vi's running on PC2 from PC1.
    PC2: Has executable2 containing several subvi's.

    Not sure if this is what you are looking for but here is how to launch executables that can interact
    Putnam
    Certified LabVIEW Developer
    Senior Test Engineer
    Currently using LV 6.1-LabVIEW 2012, RT8.5
    LabVIEW Champion

  • One link to open/close all _accordion_ panels

    I am aware that collapsible panels have group feature and you can open and close all panels by wrapping the individual panels within a group.
    Is there a way to open all panels in an accordion widget?

    Open all, no.
    Close all, yes (set panel to -1, with the useFixedHeights:false option)

  • Spry Collapsible Panel Resize Problem

    I have 2 collapsible panels within  a table on a site, and it works great, except for the fact that when all of the panels are closed:
    In IE7: The tabs move to the middle of the table and break the layout.
    In Firefox: The tabs move to the BOTTOM of the table and break the layout.
      The example can be found here:
    http://www.go9production.com/agm/products1.php
    It looks to me like it's resizing the entire cell and making it too small, but I don't know how to fix this without preventing it from getting larger either.  Can anyone help me at least get them to close at the TOP of the page rather than the middle or bottom?

    This is what I see in Chrome
    and similarly in IE7/8/9, FF and Safari
    Gramps

  • Icloud 2.0 control panel doesn't sync photos to Idevices

    I have a computer ruinning windows 7 64, I have Icloud 2.0 innstalled, and I have an Iphone 3gs and an Ipad 3 with sim all hooked up to the same apple id.
    I have set up Icloud on all devices. Photos taken with iphone or ipad syncs perfectly to all units. But photos added to the standard upload folder (created by Icloud 2.0 control panel) within the picture stream folder on my computer won't sync. When I add a photo here it shows in "my photostream folder" on my computer, shortly after, but not on my iphone or ipad. (And yes, both I units are hooked up to wifi)
    I have been messing with this issue for 3 days. And I am getting increasingly fed up. I have reinstalled the control panel for the computer several times, booted several times. Turned I cloud on and off on all devices, reset the photostream on www.icloud.com several timens, no change.
    Tried to contact apple support, but they want to charge me 300NOK(50USD) for calling me. I didn't go through with that obviously.
    If this isn't fixed I am seriously considering returning the new iphone 5 and the accessories I ordered last week.
    (I do know I can use dropbox(which actually work) or sync the pics through itunes, but one of the main advantages with Apple in my opinion was the Icloud feature. Things from Apple used to work at once, but now, not so sure anymore.
    Help is greatly appriciated.

    So.. I tried again and did the following:
    1. Signed out of ICloud control panel 2.0
    2. Uninnstalled Icloud control panel 2.0 through programs and functions in Windows control panel.
    3. Deleted folders that Icloud automaticly made for picturestream (my picturestream, shared and upload)
    4. signed in to www.icloud.com and reset picturestream.
    5. Booted the computer
    6. booted Iphone 3gs and Ipad 3, turned picturestream off and on on both devices.
    7. innstalled Icloud control panel 2.0 from Apple software update on computer.
    8. configured Icloud control panel 2.0 on computer, enabled photostream. And sat photostream folder to a designated folder on my desktop.
    9. Crossed fingers and toes
    10. Moved 77 pics into upload folder within the designated folder on my desktop.
    Result:
    1. The pics seemed to upload to Icloud at once, as they downloaded to the "my photo stream" folder within the designated folder on my desktop, They also showed in a new root folder when I open my computer folder called Photostream. All pics are there.
    2. checked my ipad and iphone -> no pictures in my photostream on either device, even though both are connected to wifi, and both have more than 20% battery power, and none of them have camera app open.
    3. Teared of grey hair as they popped out.
    4. Considering android platforms instead, and to sell my iphone 3gs,ipad 3, apple airport express, and apple tv, and to return my ordered iphone 5. And to stop recommending apple products for work, friends an family.
    5. Irritated.

Maybe you are looking for

  • In mail how do I stop messages from the same sender from showing up when I select the most recent message from a sender?

    on my iMac, when I view messages there is a grey number at the top of the message. This number denotes the amount of  messages from that sender and when I view the most recent message in my mailbox (from that sender) all of the older messages load wi

  • PSD (and AI) thumbails in Windows 7 64 bit?

    Does anyone have a fix for the missing Photoshop (and Illustrator) thumbnails (CS3) in Windows 7 64 bit Explorer? Something easy to implement that doesn't involve purchasing and running an additional 3rd party commercial solution? Please don't answer

  • Photo sync doesn't work.

    Hi, I'm using iPhone 4S iOS 5.0.1 and Windows7 computer. I took a trip somewhere, took picture (JPG files) with digital camera (Canon DIGITAL IXUS 110 IS) , and I want to send photos to my iPhone. But It doesn't work. And no error codes. Just iPhone

  • Connect to multiple drives in the same directory?

    Please pardon me for not using correct terminology. I cannot mount (map) two drives in the same directory. I use "Go >Connect to Server >smb://fs.domain.edu/~directory/folder1" and the folder1 icon pops up on my desktop. Then if I use the same struct

  • HT4623 Software update button, where is it?

    I am trying to update my ipad but in settings, general there is no software update button. Would do I do? I think ios 5 would be the next install