Delete button hidden in iMessage!

If you press and hold on a message to bring up the menu and then select "more" you would normally see the delete and arrow icon at the bottom of the screen - but at the moment they are hidden with the message composition box!
You have to expand the composition box by bringing up the keyboard and then sending the keyboard down (hiding it) which then reveals the delete and arrow icons...
Not a big bug but a bug none the less.

I don't understand why after the upgrade when there was a complete restart you would have thought that a complete restart was the same as a reset??
I didn't think they were the same, that's why I recommended it. Airdrop I know nothing about so I can't help you there, sorry.

Similar Messages

  • I have Iphone 5 and have an issue with deleting part of the messages in Imessage conversation. The trash button is not displayed to delete part of the imessage. I see only delete all option. Is it a bug?

    I have Iphone 5 and have an issue with deleting part of the messages in Imessage conversation. The trash button is not displayed to delete part of the imessage. I see only delete all option. Is it a bug?

    Hi An Iphone user,
    If you are having issues deleting a specific message from an iMessage conversation (not seeing the Trash icon), you may want to double-check that you are following the steps outlined in the following article:
    How do I delete a message?
    To delete a message, tap and hold the message bubble, then tap More.
    Tap Delete All to delete all the messages. Or tap to select the messages you want to delete, then tap .
    After you delete a message, you can recover it only by restoring from a backup.
    Send messages with your iPhone, iPad, or iPod touch - Apple Support
    Regards,
    - Brenden

  • Delete  'button' on report how to do this?

    Hi,
    I have a requirement to implement a 'delete' button on a report, but cannot find out how to do it. I found the following site which does exactly what I want, but cannot get to the code to see how the author has done it can any one assist please?
    http://apex.oracle.com/pls/otn/f?p=40323:32:689305137368050
    Thanks inadvance.

    Hello:
    Let's assume your report query is something similar to
    select empno,ename from emp
    You do the following
    In the Column Attributes for report set the column-link for the 'empno' column to redirect to a URL
    Set the URL to be
    javascript:doDelete(#EMPNO#);
    Create a button named 'DELETE'. Set the button to submit the page and branch back to the same page. Set the button's condition to 'Never'
    Create a page-item named 'P1_EMPNO' of type hidden
    Create a 'On Submit' pl/sql page process that is conditional on the 'DELETE' button with the following code
      delete from emp where empno=:p1_empno;Add the following javascript in the HTML header <script>
    function doDelete(empno) {
       if (confirm('Delete employee ' || empno)) {
          $s('P1_EMPNO',empno)
         doSubmit('DELETE')
    </script>varad

  • Err-1016 and delete button

    Hi all,
    I'm following the "2 day HTML db developer" guide and I've come across a problem.
    Following all the steps of the "issue tracking app" I have created a form for insert/updating/deleting issues. Here the form contains a hidden item for navigating back to the original page that made the call.
    Well this thing works fine when creating and saving issues also when cancelliing the action, but when deleting an issue I get the following error:
    "Error ERR-1016 Application "XXXX" Page "0" not found (requested language="en-gb ")"
    The record is deleted but the navigation cannot be completed.
    Obviuosly there's no page 0. The uncondicional branch that navigates to the page stored by P7_PREV_PAGE doesn't work when deleting.
    Any help/ideas?
    Many thanks in advance.

    Scott, many thanks for your quick response.
    I have now created a shared application item and everything works fine now.
    There's something I don't understand:
    - Why the wizard created the reset page process and associated it to the delete button and not to the create/create again buttons too?
    - Is it necessary this reset page process?
    And my last doubt, is it better to reset individual items on the page level or to create a navigation item on the application level?
    Your guidance is very much appreciated.

  • Delete button control: Javascript confirm & redirect?

    Hello all,
    I have a contract details page that has the following buttons: Save, Cancel, Delete. The Cancel button has a general redirect assigned to it, since no processing is necessary. As for the Save button, the page submits to itself, so the screen just reloads quickly, with a note to show the record was updated. As for the delete button, I don't want the user to remain on a details page for a contract they just deleted, so I wish to redirect the user to my contract search page after the record is deleted. I also want to have the button confirm the deletion before proceeding.
    My current page setup is as follows:
    SAVE button (template based)
    Optional URL Redirect - No Target
    DELETE button (template based)
    Optional URL Redirect - Page 3 (contract search)
    "Request" and other fields here are empty
    CANCEL button (template based)
    Optional URL Redirect - Page 3 (contract search)
    "Request" and other fields here are empty
    BRANCHES Information:
    Before Validation:
    DELETE:
    Target type - page in application (3 - contract search)
    Request - DELETE
    When Button Pressed - BTN_DELETE
    After Processing:
    Target type - page in application (2 - contract details)
    When Button Pressed - BTN_SAVE
    Here's my dilemma...under the setup listed above, clicking Delete redirects me to the search page, but the record is not deleted (I do have a DML process set up for Insert/Update/Delete, set up for After Submit). I've tried changing both the button and/or branch properties to set up URL processing, entering javascript to confirm the deletion. No matter the combination I use, either the contract will not get deleted, or the deletion is a success, but I get an error message that there is no branch page set up for that. If anyone has suggestions as to how I can get validation to play nicely with deleting records, it would be much appreciated.
    Thanks,
    Brian

    Mike,
    Is it possible that you have more than 1 branch to the target page? yes I do, before I had the Unconditional branch on top. Now I moved the conditional branch to the top. Redirect is working fine but no luck with passing values. After some research I found that it passes the request value when I send it as a string but not as value of the item on page. This may have something to do with in-built Delete procedure.
    I am very new to Apex/Oracle and I don't know how to create a oracle workspace and post my App on line. So, I am giving a detailed description of what I am trying to achieve. please bear with this while I try to figure out how to post it on line.
    This is exactly what I am trying to do.
    On the first page I have multiple regions to show different reports based the user selection. User clicks a button to make a selection. I am toggling between the regions depending on the request value from the button click.
    If the user decides to modify a record he is directed to a form. After modifying I want the user to come back to the first page and be in the same region where he was initially.
    To achieve this
    --- I am passing the request value from the first page to the form and saving it in a hidden variable. In the unconditional branch I am passing that value back and it is working fine.
    --- Only for the Delete operation I have problems. I still want to have the Alert so I am using the javascript:confirmDelete(htmldb_delete_message,'DELETE'); in the Delete button URL.
    I created a conditional branch which has lower sequence than the unconditional one.
    I have set the condition as Request = Expression 1(DELETE) not the button click.
    In the Action part, i have the following
    Target type Page in this Application
    Page: 21
    Request: &P21_Old_Request.
    Clear Cache
    Set these items P21_Item1
    With these values &P22_Item1.
    I have seen that page redirect is working fine.( I tried to redirect to other pages it works fine). Only the values are not passed. I tried to pass these values as Application level items even then it doesn't do anything. But if u pass the string directly it would pass the string. But I want to be able to pass the value as an Item from the form.
    As I mentioned before it may be to do something with in-built Delete procedure.
    Is there way to see the SQL of that procedure?
    Do u have any suggestions for me?
    Thanks in Advance.
    Nimmi

  • Delete button doesn't seem to use branch to return to page

    I have set up a single update form with multiple report pages pointing to it. I did this using the basic report / form option, so the create button is on the report linking to the form along with an edit button to the form for update and delete. There is also a cancel button on the form.
    After perusing the forum, I set up an item on the form to accept the passed page number of the various report pages and set the unconditional branch back to this button value. This works well for create, update and cancel. They all return nicely to the originating page.
    However, the delete button has the standard javascript popup asking for verification of the delete. That pops up, the record gets deleted and I get the action processed message, but I don't get back to the originating page - instead I get an error "Error ERR-1016 Application "122" Page "0" not found (requested language="en-us") which appears to say it isn't referencing the item for the return page. I know the item has the correct value because it is not currently hidden for testing.
    The branch point is on submit after processing and pointing to a page in the application with value of &P3_BRANCH_TO.
    If I replace the URL for the javascript popup in the delete button with the link to the item, I don't get the delete at all. It just goes back to the originating page. So the javascript does more than just give a popup.
    How can I get around this situation?
    TIA
    Gillian
    PS - this forum is great - it has been very useful for this newbie.

    Hi Gillian,
    The "reset page" process is there to remove from the session the values of all items on the page. In most cases, this is ok as this is what you would want to do. In some cases, however, this can cause problems. In your case, because your P3_BRANCH_TO item is on the same page, then it was also being cleared out along with the rest of the data, so when the branch was attempting to read it, the value was actually null rather than an actual page number.
    There are two things you could try, to ensure that you clear out the session values that you don't need but keep the ones that you do.
    1 - Put the items you want to keep on another page where possible or create Application Items (through Shared Components) and set these values instead. I do this for my G_RETURN_PAGE item (which I think is similar to what you are doing with your P3_BRANCH_TO item) - I set this value on my base pages (the pages that the user needs to return to after performing any action) and then use &G_RETURN_PAGE. in the branch. As "reset page" only clears data out of pages, any application item is not affected, so will always be available.
    2 - In your branch, you can set the value back to itself. So, the "Set these items" setting would have P3_BRANCH_TO and the "With these values" would have &P3_BRANCH_TO.
    Andy

  • Can't find delete button for quick link address in my inbox navigation pane !

    Hi,
    There is no delete button for quick link which I mistakenly added in my inbox navigation pane. In fact, the link I added for quick link was a mistake and it was a different page address, and the missing delete button is for this specific link only; other than it is alright. How can I remove or delete it from my inbox quick link ?
    Thanks,
    Regards,
    Cyberkhan

    There does seem to be a close/delete button present that is hidden under the 'm' from 'google.com' that is probably not clickable.
    I don't know if there should be such a long link visible in that list item or that something else is wrong.
    You can try to right-click that area and use Inspect Element to open the Inspector.
    *https://developer.mozilla.org/Tools/Page_Inspector

  • I need to delete an address for imessage -

    i need to delete the address my imessage defaults too - i set it up to my email adress not to my ipone cell number now when i travel and turn off my mail i cant use imessage .
    if i go into setting i can see both there - as in my cell number in an inactive field and my email as the active field
    i have tried to use the delete key option but it is inactive so i cant seem to do it
    any suggestions ?

    Does this work ?  -
    hold down sleep/wake button until "slide to power off" appears. Then hold down home button until all apps force quit

  • Custom Save / Apply Changes / Delete buttons...

    Hi All,
    I wanted to make a custom save / apply changes and delete buttons in my forms. Therefore I wrote some JavaScript functions to call these actions as shown below;
    function saveRecord(pListPage){
    if (P&APP_PAGE_ID._CALLACTIONTYPE!= 'CANCEL') {
    if (P&APP_PAGE_ID._CALLACTIONTYPE!= 'DELETE'){
    doSubmit(P&APP_PAGE_ID._CALLACTIONTYPE);
    lvurl = 'f?p=&APP_ID.:' + pListPage+ ':&APP_SESSION.::NO:' + pListPage+ ':P' + pListPage+ '_CALLTYPE' + ',P' + pListPage+ '_CALLFROM,P' + pListPage+ '_SELECTEDRECORD,' + 'P' + pListPage+ '_MANDATORYFILTER,'+ 'P' + pListPage+ '_MANDATORYFILTERVALUE,P' + pListPage+ '_REFERENCEDBY' + ':' + $v(P&APP_PAGE_ID._CALLTYPE) + ',' + $v(P&APP_PAGE_ID._CALLFROM) + ',' + $v(P&APP_PAGE_ID._SELECTEDRECORD) + ',' + $v(P&APP_PAGE_ID._MANDATORYFILTER) + ',' + $v(P&APP_PAGE_ID._MANDATORYFILTERVALUE) + ',' + $v(P&APP_PAGE_ID._REFERENCEDBY);
    top.location.href = lvurl;
    function deleteRecord(pListPage){
    document.getElementById("P&APP_PAGE_ID._CALLACTIONTYPE").value = 'DELETE';
    confirmDelete(htmldb_delete_message,'DELETE');
    But the problems what I couldnt sort out are;
    1- If any error happens in doSubmit(); (can be any DB error by triggers etc.) I cannot show the error. Does anybody know to check whether doSubmit() returned an error or not...
    2- Delete button shows the confirmation dialog box but when I confirm to delete I got an error show below;
    "     Checksum error for Hidden and Protected item ID (1737324593811176), value (DELETE), posted checksum (D636C53A8C84A57A1BBB04A61B600C4A), expected checksum (********************************), index_i (9), index_j (5), index_m (7); "
    Can you please tell me how to sort this problems or can anybody know that there's another ways to do these things?
    I really need help guys...
    Thank you very much,
    Osman...

    Hi Varad,
    We need to have custom buttons for save etc because there are some parameters must be transferred between screens. Let me explain it like this;
    Normally when you enter the IR screen, we set a couple of hidden items' values. (such as P_CALLFROM, P_CALLTYPE, etc...)
    and then user goes into a record to edit or insert.
    When user saves the record by pressing standard Apex "Apply Changes" button, page will go back to IR page but we loose the parameter which we assigned before...
    That's why I need to have a custom save, delete etc buttons...
    So, if I need to create a custom process, Do I need to collect all the filed values from the page by myself?
    Thanks,
    Osman...

  • Deleting the Hidden Partition

    HI, I'm going to rebuild my system with Windows Vista, as it was shipped with XP.
    In doing so, I was considering deleting the hidden partition.  If I delete this, will I only be deleting the option to restore to the factory defaults?  I have made recovery DVD's so if this is the case, I should be fine.  Will I still have the option to hit the thinkvantage button on boot up and have some of the other tools that are there, such as diagnostics, or do I loose that as well.
    Thanks
    David 
    Solved!
    Go to Solution.

    I deleted my hidden partition also after making recovery discs.   You can use the discs to restore everything including the hidden partition if necessary.
    The info on deleting the partition is here: http://forum.notebookreview.com/showthread.php?p=2367169#post2367169/
    A great guide for clean installing Vista is here: http://forum.notebookreview.com/showthread.php?t=144783
    Good luck!
    -Paul
    Message Edited by paulgj on 12-10-2008 11:24 PM
    T400 6475-8Q5 | 8GB RAM | WXGA+ | Seagate 500GB 7200 | Win 7 Pro 64-bit............T61 7658-CTR | 8GB RAM | WD Black 320GB

  • Disable delete button in a maintenance view

    Hi,
    Does anyone knows how can I disable the delete button in a maintenance view so when a user that is not authorized can´t delete any row, or how can I lock the delete subroutine.
    Thanks!

    Hello Moises
    The problem with this solution is that if you ever need to modify your maintenance view (i.e. regenerate the dynpros because you may want to add new fields) your coding is gone.
    This is not the case if you are using event 19. Below you see same sample coding:
    ***INCLUDE LZUS_SDN_MAINTF01 .  " Function Group with maintenance views
    * Event 19: After Init. Global Variables, Field Symbols, etc.
    * http://help.sap.com/saphelp_nw2004s/helpdata/en/91/ca9f44a9d111d1a5690000e82deaaa/content.htm
    FORM exclude_gui_function.
    * define local data
      DATA: ls_excl   TYPE vimexclfun.
      ls_excl-function = 'DELE'.  " taken from standard GUI-status 'ZULG'
    BREAK-POINT.
      AUTHORITY-CHECK OBJECT 'F_BKPF_BUK'
               ID 'BUKRS' FIELD '1000'
               ID 'ACTVT' FIELD '02'.
      IF ( syst-subrc NE 0 ).
        APPEND ls_excl TO excl_cua_funct.
      ENDIF.
      APPEND ls_excl TO excl_cua_funct.  " Just for the purpose of demonstration
    ENDFORM.                    "exclude_gui_function
    Regards
      Uwe

  • How do i delete songs from my iphone when they don't show up in itunes? Swiping across the song on the iphone does not give me a delete button.

    How do i delete songs from my iphone when they don't show up in itunes? Swiping across the song on the iphone does not give me a delete button.

    Hello audreywisc,
    Songs can be removed from your iPhone by tapping 'Songs,' then swiping the song, then tapping Delete.
    Remove a song from iPhone. Tap Songs, swipe the song, then tap Delete. The song is deleted from iPhone, but not from your iTunes library on your Mac or PC, or from iCloud.
    iPhone User Guide - Playlists
    http://help.apple.com/iphone/8/
    Cheers,
    Allen

  • How can I delete bookmarks on my toolbar when the 'bluestar' isn't illuminated? (Same for the 'delete' button in the library menu).

    Dear Sir/Madam
    I have had a look at your solutions page and have tried to use all the advice suggested however, when I try to delete three items on by Toolbar, none of them illuminate the 'BlueStar' which is beside their address. (I have successfully got rid of other items). I have also tried to delete the items in Firefox's library menu, however, the delete button their isn't illuminated either. I am now concerned that the items are spyware. I was thinking of reinstalling the software but, this would mean loosing all my Bookmarks.
    For your information, I have just updated Firefox to 28.0.
    I would appreciate your help with this matter.
    Kind regards
    Suzanne

    Dear sludge7051-x
    Thank you so much for all your help.
    I did as you said (after trying to find a very old mouse in my computer box in the attic!), and managed to delete the offending tags.
    Really appreciate your prompt response to my problem.
    Have a lovely weekend.
    Kind regards

  • I cannot delete pictures from ipod as there is no delete button showing, I cannot delete pictures from ipod as there is no delete button showing

    I Cannot delete the pictures from my ipod, there is not a delete button showing on the screen only Share , copy, or print could you please help me

    You need to resync with iTunes. Unselect photos in iPhoto you don't want anymore.  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G + 120G OCZ Vertex 3 SSD Boot HD 

  • Delete button doesn't work in tabular form after upgrade from APEX3.2 to 4

    I just upgraded the APEX from 3.2 to 4.0. However, my application is not working anymore.
    First of all, my delete button in tabular form is not working. When I select a row and click the delete button, the row is not deleted, however the message showed 1 row is deleted.
    Could you anybody tell me how can I debug this problem?
    Thanks a lot !

    I had the same problem. I first tried the solution above, but that didn't work. I also had a derived column for a custom popup and some display only columns. I removed the derived column and took out the display columns from my query. I then made sure my column order matched the source query. I applied changes and the delete button worked. FYI. I found out by some testing that it was actually trying to delete from the table, but with the wrong id. My first editable field was qty so if the qty was equal to 2 it then tried to delete from the table where pk=2(I had to restore that record). I believe it is related to the bug above. Backup your app first. I always do before I mess with the tabular forms.
    Jeff

Maybe you are looking for

  • Photoshop CC / Nikon Coolscan V ED compatibility in Windows 7 64 bit.

    I managed to install a Nikon Coolscan V ED slide scanner in Windows 7 64 bit by first installing Vuescan, then Nikon Scan, but disallowing the installation of Nikon Scan drivers. Photoshop 7 sees the scanner in the file/import menu and previews, scan

  • Captivate 4.0 - Need best practice tips on panning, templates, resolution, etc.

    Hi all, Been searching all over in case someone has already published Best Practices for Captivate 4.0 (particularly the new/enhanced features), but coming up empty. My client's in house graphics person has been tasked with creating a template for us

  • How do you create a website in flash?

    Please help me on how to create a flash website

  • Deleting locked file on desktop

    Greetings- This is more a software question. I transferred QuickBook files from a PC to my Mac. I can run QB for Mac easily, but the transfer left a locked .qbw file on my desktop. I think this is a QB backup for Windows file. I am trying to delete i

  • Drag and Drop symbol action issue! Help!

    Hi, I am constructing a risk radar and am looking for an object to change state when put on the middle of a target. And once removed from the middle of the target, to change back to its original state, I so far have this code: // insert code to be ru