I miss my calendar list of events!! How can I get my list back?

Really? Why did they do away with that? Now the search button is really a search button. I relied on the list to see my week at a glance. Now, I only see one day at the bottom and it's hard to see. Help!

artistmom,
Bring back calendar list view in iOS!!: Apple Support Communities explains the changes.

Similar Messages

  • At my iPhone 4 I missed the App "App store". How can I get the App again???

    At my iPhone 4 I missed the App "App store". How can I get the App again???

    The App Store app cannot be deleted so look for it using Spotlight or manually in all the app pages and folders.
    Also check Settings > General > Restrictions: should be OFF
         iTunes : ON?
         Installing Apps: ON?
         Apps: All?

  • My camera profiles under camera calibration  (standard, landscape,etc) are missing  since I've updated to 5.6. I have a canon 6d and my computer is a mac. How can I get these profile back?

    My camera profiles (standard, landscape,etc) are missing (under camera calibration) since I've updated to 5.6. I have a canon 6d and my computer is a mac. How can I get this profile back?

    Please upload one of the files to www.dropbox.com and post a public share link in a reply, here.
    Show us a screenshot of the filename in LR that includes the extension of the file.
    Right-click on one of these files and do Show in Explorer, then show us a screenshot of the files in the folder that includes the extensions--maybe a Details view.

  • ADF and JQuery: How can I get the data back to server listener.

    Jdeveloper 11g Version 11.1.1.2.0
    I use Jquery to draw the signature. How can I get the svgOutput back to my server listener.???
    e.getSource give me the error e.getSource is not function.
    Both of function saveSignatureCapture(which calling from ADF button) and $('#save-output').click(function (event) can not send the the data back to my server listener.
    Thanks.
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1" xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="dSignature" title="Signature Capture">
          <af:resource type="javascript" source="../resources/lib/jquery/jquery-1.4.2.min.js"/>
          <af:resource type="javascript" source="../resources/js/jquery.drawbox.js"/>
          <af:resource type="javascript">
            var svgOutput = '';
            function saveSignatureCapture(e) {
                var signatureText = $('#drawbox-data').val();
                var source = e.getSource();
                var type = 'saveSignatureCapture_ServerListener';
                var immediate = true;
                var params = {
                    signatureText : signatureText
                AdfCustomEvent.queue(source, type, params, immediate);
            function beginSignatureCapture(e) {
                $('#drawbox').drawbox( {
                    caption : 'This is a caption', lineWidth : 3, lineCap : 'round', lineJoin : 'round', colorSelector : true
                $('#view-output').click(function () {
                    svgOutput = window.open('data:image/svg+xml,' + $('#drawbox-data').val());
                    svgOutput.document.close();
                    return false;
                $('#save-output').click(function (event) {
                    var signatureText = $('#drawbox-data').val();
                    var source = $(document);
                    var type = "saveSignatureCapture_ServerListener";
                    var immediate = true;
                    var params = {
                        signatureText : signatureText
                    AdfCustomEvent.queue(source, type, params, immediate);
                    return false;
            $(document).ready(beginSignatureCapture);
          </af:resource>
          <af:panelStretchLayout id="psSignature">
            <f:facet name="bottom"/>
            <f:facet name="center">
              <af:panelGroupLayout id="pgSignature" layout="vertical">
                <f:verbatim>
                  <div id="divSignature">
                    <canvas id="drawbox" width="600" height="200">
                      <p>Your browser does not support &lt;canvas&gt;</p>
                    </canvas>
                  </div>
                  <br/>
                  <br/>
                  <a href="#" id="view-output">View Rendered SVG Output</a>
                  <br/>
                  <br/>
                  <a href="#" id="save-output">Save Signature</a>
                </f:verbatim>
                <af:spacer width="10" height="10" id="s10"/>
                <af:panelGroupLayout id="pghl14" layout="horizontal" halign="center">
                  <af:commandButton text="Save Signature" id="cbSaveSignatureButtonId" partialSubmit="true">
                    <af:clientListener method="saveSignatureCapture" type="click"/>
                    <af:serverListener type="saveSignatureCapture_ServerListener"
                                       method="#{backingBeanScope.mainBackingBean.saveSignatureCapture_ServerListener}"/>
                  </af:commandButton>
                </af:panelGroupLayout>
              </af:panelGroupLayout>
            </f:facet>
            <f:facet name="start"/>
            <f:facet name="end"/>
            <f:facet name="top"/>
          </af:panelStretchLayout>
        </af:document>
      </f:view>
    </jsp:root>Edited by: user553450 on Sep 17, 2010 4:02 PM
    Edited by: user553450 on Sep 17, 2010 4:13 PM

    Hi Frank,
    Thank you so much for your advice, I got lot of knowledge from your book and articles since I am in transition from forms to JDeveloper.
    By surrounding <af:panelStretchLayout id="psSignature"> with <af:form id="f1">
    Now the following code is work on Firefox, everything fine, I can get the data back and call my server listener as I expected.
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1" xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1" title="Signature Capture">
          <af:resource type="javaScript" source="../resources/js/excanvas.js"/>
          <af:resource type="javascript" source="../resources/lib/jquery/jquery-1.4.2.min.js"/>
          <af:resource type="javascript" source="../resources/js/jquery.drawbox.js"/>
          <af:resource type="javascript">
            function saveSignatureCapture(e) {
                var signatureText = $('#drawbox-data').val();
                alert(signatureText);
                var source = e.getSource();
                var type = 'saveSignatureCapture_ServerListener';
                var immediate = true;
                var params = {
                    signatureText : signatureText
                AdfCustomEvent.queue(source, type, params, immediate);
            function beginSignatureCapture(e) {
                var cmd = "$('#drawbox').drawbox({lineWidth:3,lineCap:'round',lineJoin:'round',colorSelector:true});";
                if (navigator.userAgent.indexOf('MSIE') !=  - 1) {
                    setTimeout(cmd, 1000);
                else {
                    $('#drawbox').drawbox( {
                        caption : 'This is a caption', lineWidth : 3, lineCap : 'round', lineJoin : 'round', colorSelector : true
          </af:resource>
          <af:form id="f1">
            <af:panelStretchLayout id="psSignature">
              <f:facet name="bottom"/>
              <f:facet name="center">
                <af:panelGroupLayout id="pgSignature" layout="vertical">
                  <f:verbatim>
                    <canvas id="drawbox" width="600" height="200">
                      <p>Your browser does not support &lt;canvas&gt;</p>
                    </canvas>
                  </f:verbatim>
                  <af:spacer width="10" height="10" id="s10"/>
                  <af:panelGroupLayout id="pghl14" layout="horizontal" halign="center">
                    <af:commandButton text="Save Signature" id="cbSaveSignatureButtonId" partialSubmit="true">
                      <af:clientListener method="saveSignatureCapture" type="click"/>
                      <af:serverListener type="saveSignatureCapture_ServerListener"
                                         method="#{backingBeanScope.mainBackingBean.saveSignatureCapture_ServerListener}"/>
                    </af:commandButton>
                  </af:panelGroupLayout>
                </af:panelGroupLayout>
              </f:facet>
              <f:facet name="start"/>
              <f:facet name="end"/>
              <f:facet name="top"/>
            </af:panelStretchLayout>
          </af:form>
          <af:clientListener method="beginSignatureCapture" type="load"/>
        </af:document>
      </f:view>
    </jsp:root> However, I got the error following error when I run the page from IE8.
    Assertion failed: Incorrect use of AdfRichUIPeer.GetDomNodeForCommentComponent.AdfRichCommandButton[oracle.adf.RichCommandButton] id=cbSaveSignatureButtonId StackTrace:function(x217)[AdfRichCommandButton[oracle.adf.RichCommandButtonId]..........
    FYI, the following simple testing code has the similar error in IE8 too (not for Firefox).
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1" xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1">
          <af:resource type="javaScript" source="../resources/js/excanvas.js"/>
          <af:form id="f1">
            <f:verbatim>
              <canvas id="drawbox" width="600" height="200">
                <p>Your browser does not support &lt;canvas&gt;</p>
              </canvas>
            </f:verbatim>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>The error is: Assertion failed: Incorrect use of AdfRichUIPeer.GetDomNodeForCommentComponent.AdfRichDialog[oracle.adf.RichDialog] id:::msgDlg StackTrace function(x217).......
    Your advice is very much appreciated.

  • I downloaded 4.0.1 and lost all my Yahoo toolbar apps but still have the Yahoo search bar. How can I get the apps back? Refreshing the "gear" does nothing.

    I have Windows XP and downloaded Firefox 4.0.1. After it was installed 5/7/11, I noticed all my Yahoo search bar apps were missing. Rebooting did not help. Neither did the "gear" on the toolbar next to the yellow Yahoo search box. Internet Explorer browser still shows them. How can I get the apps back in Firefox?

    I have Windows 7, the Yahoo toolbar has been working fine until today now all my apps are missing.
    Refreshing the toolbar does nothing.

  • How can I get my texts back after IOS update?

    How can I get my texts back after an IOS update?

    Hi Clembo60,
    Welcome to the Apple Support Communities!
    I understand that your text messages are missing after an update on your iPhone. If you have a backup of your device on either iTunes or iCloud, you can restore from that backup and bring your information back. Please review the attached article, which covers how to back up and restore from backups, for more information. 
    Back up and restore your iPhone, iPad, or iPod touch using iCloud or iTunes - Apple Support
    Best regards,
    Joe

  • IPhoto update from Mavericks deleted my library. How can I get my pictures back?

    Soo my iPhoto just decided not to find my photo library anymore.
    When I open iPhoto, it only opens a windwo where I can decide which library I want to open, but gives me no choices, the list is empty. Normally this window opens when my external HD is connected to my macbook since then there's two iPhotos available, but now it just doesnt find even one.
    I had another problem with the iPhoto on my external HD, i wanted to open it but a window opened to tell me that my library is used by another programm or that the library can't be read anymore. I was able to save those pictures by showing the contents and copying the pictures.
    Buuuut now on the macbook, when I do the left click thing to open the contents of the package, there are no pictures in it at all, no folder has pictures in it. When I copy the version from time machine, nothing changes. iPhoto has a size of 1.7 Gb, which is way to small. God dammit.
    How can I get my pictures back?

    Thank you Terence!
    Okay, so here the details:
    iPhoto Version 9.5.1
    OS X Version 10.9.1
    So here what I did, detailed. (pardon my english, I'm swiss)
    I downloaded Mavericks, few days later updated iPhoto (the iPhoto icon was orange before and turned blue after the update). All went well, until one month later, all of a sudden, I was not able to open my iPhoto on the external harddisk. A window opened to tell me that either my library is being used by another programm or that it can't be read anymore. To solve this problem iPhoto tells me to do several things, for example shut down the computer and then open iPhoto again, or set up my library again or open iPhoto by pressing command and alt. But non of those instructions helped. So I opened the contents, I looked for the folder with the masters of my pictures and copied the whole thing onto another harddisk.  
    I think I got those Pics saved, but I still can't open iPhoto on the external harddisk.
    Oh and by the way, the iPhoto icon on my external harddisk looks different now, it's three pictures in a row and the one on top shows a redish flower.
    So now, two days later I try to open the iPhoto on my regular macbook. A window pops up and says that I have to choose a library that I want to open. (iPhoto usually did that when I had my external harddisk connected since there were two different librarys then, one on my external, one on my computer) But now, instead of showing me the library's I can choose from it only shows nothing, no list or anything i could even choose. And then below there's this button that says something like "create a new library".
    So what I did:
    I open the contents and looked for the masters of my pictures, but there weren't any pictures at all. The iPhoto has a size of 1.7 GB which I think is too small for all the Pics and videos i stored in there.
    I tried to get the IPhoto from Time Machine, but nothing changed. Iphoto still's 1.7 GB.
    I opened the file "Pictures" in the Finder, but there's no such file like "iPhoto library", like it's deleted or something like that.
    So i think that I used iPhoto usually, nothing speciall. I imported Pictures from my iPhone or camera and left them there.
    Does that help?

  • My mac desktop will not provide sound from internal speakers.  when I go to audio devices window it only shows airplay.  How can I get internal speakers back.

    My mac desktop will not provide sound from internal speakers.  When I go to audio devices window it only shows airplay.  How can I get internal speakers back.

    There are many possible causes for this issue. Take each of the following steps that you haven't already tried. Some may not apply to your model. Back up all data before making any changes.
    1. Start with the steps recommended in this support article. Don't skip any of the steps. It's the starting point for further efforts to solve the problem.
    2. Run Software Update and make sure you have a fully up-to-date installation of OS X.
    3. If you've installed an application called "Memory Clean" or any other third-party software that is supposed to "clean" or "purge" memory automatically, remove it according to the developer's instructions and restart. You should do that even if the software is not causing the problem, because it's useless.
    4. Other third-party software that has been reported to interfere with sound output includes "Boom" and "Samsung Kies." If applicable, uninstall according to the developer's instructions (not by dragging something to the Trash.)
    5. If an AirPlay device is selected for sound output from iTunes (or from other applications via third-party software such as "Airfoil"), deselect it.
    6. Launch the application "Audio MIDI Setup" by entering the first few letters of its name in a Spotlight search and selecting it in the results (it should be at the top.) Select Built-in Output from the list on the left. If the Mute boxes are checked, uncheck them.
    7. If a red light is visible in the audio-out port when sound should be playing, the internal switch is stuck in the position for digital output. You may be able to free it by inserting and removing a mini-stereo jack of the proper size. Inserting any kind of tool in the port may cause damage that won't be covered by your warranty.
    If there's no red light, the switch may still be stuck in the headphone position. Try to free it the same way.
    8. Disconnect all wired peripherals except keyboard and mouse, if applicable. If more than one display is connected, disconnect all extra ones. Restart and test.
    9. If you have a MacBook Air, turn off Bluetooth and restart.
    10. Start up in safe mode. Don't log in; just restart as usual when the login screen appears. When you do, make sure the words "Safe Boot" do not appear in the login screen. If they do, the system is still in safe mode and sound won't work.
    11. Reset the NVRAM.
    12. Reset the SMC.
    13. Triple-click anywhere in the line below on this page to select it:
    /Library/Preferences/Audio
    Right-click or control-click the highlighted line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item selected. Move the selected item to the Trash. You may be prompted for your administrator login password. Restart the computer and empty the Trash. Recreate your settings in the Sound preference pane.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.
    14. Reinstall OS X after backing up all data.
    15. Make a "Genius" appointment at an Apple Store.

  • When I switched computers my songs now cut off and don't play out.  How can I get my songs back to play fully that I purchased from ITunes over the past years?

    When I switched computers my songs now cut off and don't play out.  How can I get my songs back to play fully that I purchased from ITunes over the past years?

    Other people have been having similar problems with songs over the last few days, I assume that there has been a problem with Apple's servers.
    Depending upon what country that you are in (music can't be re-downloaded in all countries) then try deleting those tracks from your iTunes library and redownload them via the Purchased link under Quick Links on the right-hand side of the iTunes store home page on your computer's iTunes : re-downloading.
    If you aren't in a country where you can re-download music or if they re-download in the same state then try the 'report a problem' link from your purchase history : log into your account on your computer's iTunes via Store > View My Account and you should then see a Purchase History section with a 'see all' link to the right of it ; click on that and you should see a list of your purchases ; find those songs and use the 'Report a Problem' link.

  • I installed the new software onto my windows computer and then couldn't open it.  I did the uninstall and reinstall and I am still getting the same  problem.  How can I get my itunes back?

    I installed the new itunes software onto my windows computer  and then couldn't oopen Itunes.  I did an uninstall and reinstall and still have the same problem.  How can I get my itunes back?

    It says " application failed because MSVCR80.dll is missing from computer and then when I click okay it says I tunes wan't installed correctly Please reinstall
    Many thanks, that's perfect. Try the following user tip with those ones:
    Troubleshooting issues with iTunes for Windows updates

  • HT1725 I have a few songs that will only play for about a min the it will stop playing how can i get the songs back to a full song

    I have a few songs that will only play for about a min the it will stop playing how can i get the songs back to a full song

    Depending upon what country that you are in (music can't be re-downloaded in all countries) then try deleting the incomplete tracks from your iTunes library and redownload them via the Purchased link under Quick Links on the right-hand side of the iTunes store home page on your computer's iTunes : re-downloading.
    If you aren't in a country where you can re-download music or if they re-download in the same state then try the 'report a problem' link from your purchase history : log into your account on your computer's iTunes via Store > View My Account and you should then see a Purchase History section with a 'see all' link to the right of it ; click on that and you should see a list of your purchases ; find those songs and use the 'Report a Problem' link.

  • How can you get OS Lion back if you already downloaded Mavericks?  I CANNOT live with the battery life of 2 hours!!  HELP

    How can you get OS Lion back if you already downloaded Mavericks?  I CANNOT live with the battery life of 2 hours!!  HELP

    Kappy wrote:
    Don't downgrade OS X without first erasing the drive. You cannot restore a Time Machine backup of Lion directly on top of a later version of OS X such as Mountain Lion or Mavericks.
    When you "Restore from a Time Machine Backup.", the drive will be erased for you, but yes, won't hurt to:
    Boot into Recovery (hold ⌘R on boot)
    Utility->Disk Utility->Erase Macintosh HD, then Repair Macintosh HD
    Quit Disk Utility
    Then Select: Restore from a Time Machine Backup.

  • I have an iphone4 and my husband merge his numbers with mine and i think it was deleted can you tell me how can he get his number back on his phone

    have an iphone4 and my husband merge his numbers with mine and i think it was deleted can you tell me how can he get his number back on his phone

    Do you possibly mean the contacts have been merged?
    If so, where are each of you syncing contacts?  A supported application on the computer? iCloud or another cloud service? An Exchange server?
    WIthout details, it's difficult to offer specific resolutions.

  • How can you get a transport back

    I did the following.
    I did not have my routes set up in stms
    I released some tranports
    How can I get these tranports back into any of my systems.
    Thanks

    Hi Jeremy...
    If the transports were released as a workbench request you should be able to find them in the transport directory, that should be <drive>:\usr\sap\<sid>\trans\ you need both the co-file and the data file. the names of the files should be K<number>.<sid> for the cofile and R<number>.<sid> for the datafile
    You should configure your transport route properly but if you get this files you can transport manually by copying those files to the transport directory of the destination system and use STMS -> choose import queue -> go to extras -> Other requests -> Add
    Hope this help!
    Juan

  • My battery died and then when i charged the phone it is asking me to connect to itunes and restore. if i restore how can i get my data back

    My iphone battery died and on charging the phone it asked me to connect to itunes and restore the phone.
    If i restore the phone how can i get my data back and how can i check when i last backed up my phone

    If you have been syncing regularly as the iphone is designed, then you can sync the data back.
    Regardless you will have to restore the iphone.

  • I lost my iPhone device, how can I get my data back on another one without using an iCloud backup just back up on i Tunes, Please Help.

    I lost my iPhone device, how can I get my data back on another one without using an iCloud backup just back up on i Tunes, Please Help.??

    You can find the backup files and then copy them to a safe place if you are worrying about this.
    iTunes places the backup files in these places:
    Mac: ~/Library/Application Support/MobileSync/Backup/
    The "~" represents your Home folder. If you don't see Library in your Home folder, hold Option and click the Go menu.
    Windows Vista, Windows 7, and Windows 8: \Users\(username)\AppData\Roaming\Apple Computer\MobileSync\Backup\
    To quickly access the AppData folder, click Start. In the search bar, type %appdata%, then press Return.
    Windows XP: \Documents and Settings\(username)\Application Data\Apple Computer\MobileSync\Backup\
    To quickly access the Application Data folder, click Start, then choose Run. In the search bar, type %appdata%, then click OK.

Maybe you are looking for