Google Calendar - can't edit or delete shared calendar events

I have several shared calendars on my Google Apps account. I created all calendars and have full sharing and edit rights on each. I'm using webOS 3.0.2 on my Touchpad, and I can see my shared calendars. However, when I use the webOS calendar I do not have the option to edit or delete any events on these shared calendars. This is a pretty frustrating issue. Is there any fix for this besides using Google Calendar in the web browser, which has display issues, to say the least, for me.
Thanks.
Post relates to: HP TouchPad (WiFi)

They are the standard kind. I create the events or my wife does in Google calendar. I can view them and they seemt to sync up just fine, but when I select them in calendar there is neither an option to edit nor delete. I also cannot create new items on these shared calendars from the Touchpad, although they are all visible in the calendar app itself. I'm hoping this gets resolved as this is almost an issue big enough that I may return the touchpad in my 14-day return window.

Similar Messages

  • Can't edit Google Calendar events in iCal

    I am using Google Calendar's new CalDAV sync system and their "Calaboration" tool to sync my iCal (version 3.0.5, and I'm using Mac OS 10.5.2) with my Google Calendars, per the instructions on this page:
    http://www.google.com/support/calendar/bin/answer.py?answer=99358#ical
    It seems to work ok in that I can now see my google calendar events in iCal. I can also add an event to that calendar in iCal, and it will sync to my google calendar. However, I can't seem to edit an event in iCal that was created on the Google Calendar web page. That is, all my events that I created in Google Calendar do indeed appear in iCal, but I can't edit them in iCal. I can edit events that I create for that calendar in iCal, but not ones I created in google calendar. Not a huge deal, but I was wondering if this is how it is supposed to work, because it seems a tad inconvenient.
    (I do have my e-mail address in my address book "me" card, so that's not the problem.)

    Yeah, I tried deleting the calendars in iCal and re-synching to them via Calaboration, but the same problem persisted.
    I did find the solution after a bit of experimenting, though. To solve it, I basically created a new calendar on Google Calendar, imported all my events from my old google calendar into it, then used Calaboration to sync iCal to the new Google calendar, and now I can edit events in iCal and GCal without problems. I don't actually know what the problem WAS, but this seems to have solved it. Maybe I made my original Google Calendar too long ago and it had some old bad settings I couldn't see? I dunno, but it doesn't matter now.
    For those who might have this same problem, here's how I transferred my old Google Calendar events into a new Google Calendar without losing anything: (You actually don't need to delete your old Google Calendar at all if you don't want to, so there's no reason to worry about losing your events.)
    1. In GCal, click the "settings" link at the top right of the web page. Then select the "Calendars" tab. Click the "Export My Calendars" link, which should be under your list of calendars, next to the cancel button. This will download a .zip file to your computer, containing all of your google calendars as individual .ics files. Go ahead and unzip them so that the .ics file for the calendar you want to duplicate is sitting in a folder somewhere on your computer.
    2. Now In GCal, click on the "Create" link on the lower righthand side of the "My Calendars" box, which is on the lefthand side of the screen.
    3. Create a new blank calendar and name it whatever you want. This is the blank calendar into which you will import your old calendar's events.
    4. Now, in GCal, click "Add" at the bottom right of the "Other Calendars" box, which is under the "My Calendars" box on the left side of the web page.
    5. Select "Import Calendar".
    6. Click "Choose File" and browse to the .ics file you want to duplicate on your computer.
    7. In the "Choose Calendar" pull-down menu, select the new, blank calendar you made in step 3.
    8. Click Import. This may take a few minutes, depending on the number of events you have in your .ics calendar file.
    9. Once it's done, look at the calendar to make sure your events all came into your new Google Calendar ok. It should look exactly like the original google calendar, but it will be a different color.
    10. NOW, use Calaboration to sync your iCal to the New Calendar you just made in Google Calendar.
    11. Once it's done synching, you should be able to edit events in the calendar in iCal.

  • Script creates+deletes Google Calendar-events. (free SMS-notification)

    I posted this in another thread too, but since a discussion would be off-topic there (http://bbs.archlinux.org/viewtopic.php?id=64933):
    Here a Python script that creates a Google Calendar-event in the main calendar, with as subject the contents of a specified file.
    Feel free to post modifications/optimizations! I use it this way to get notified of unanswered conversations in finch (as in the thread above), it was easier to work with a file then with specifying arguments..
    PS. The script uses python-mechanize, which is in community.
    #!/usr/bin/python
    # From: gondil
    # To: the Arch Linux forums ;)
    # Version 2 (deletion added)
    import mechanize
    import sys
    import urllib2
    import httplib
    from urllib2 import HTTPError
    # Create a mechanize browser
    mech = mechanize.Browser()
    mech.set_handle_robots(False)
    # With Goggles desired UAgent
    mech.addheaders = [("User-agent", "Java/1.5.0_06")]
    # See the G-API: We need a some token here, that is displayed by /~pkelchte/ (mah personal php site on ESAT that only does that)
    mech.open("https://www.google.com/accounts/AuthSubRequest?scope=http://www.google.com/calendar/feeds/&session=1&secure=0&next=http://homes.esat.kuleuven.be/~pkelchte/index.php")
    # But before we get the token, we need to submit our user-data
    mech.select_form(nr=0)
    mech["Email"] = "" # REPLACE THIS WITH YOUR GOOGLE ACCOUNT
    mech["Passwd"] = "" # AND THIS WITH YOUR PASSWORD
    try:
    mech.submit()
    except:
    print "Did not submit credentials"
    sys.exit("Error in submitting credentials")
    # Because that's not enough, we need to confirm that we want to go trough with this and submit another form...
    mech.select_form(nr=0)
    mech.submit(id='allow')
    # By now, we have one token, but it's not the final token! We need *another* token, called the AuthSubSessionToken, sigh...
    mech.addheaders = [("Authorization", "AuthSub token=\"" + mech.response().read() + "\""), ("User-agent", "Java/1.5.0_06")]
    mech.open("http://www.google.com/accounts/AuthSubSessionToken")
    # A bunch of tokens later...
    # Let's use urllib2 to do this POST request (some xml-y thing is the string you would manually type in the "New event" box on Google Calendar)
    # Encore some headers
    authsub = "AuthSub token=\"" + mech.response().read().replace("\n","").split("=")[1] + "\""
    headers = {"Authorization": authsub, "User-Agent": "Java/1.5.0_06", "Content-Type": "application/atom+xml", "GData-Version": "2"}
    # Read the file that we're interested in! Damn, it's so interesting!!
    file = open('/home/gondil/public_html/fifo', 'r') # CHANGE THIS FILE WITH YOUR THING
    message = file.read()
    file.close()
    # The actual event
    event = """
    <entry xmlns='http://www.w3.org/2005/Atom' xmlns:gCal='http://schemas.google.com/gCal/2005'>
    <content type="html">""" + message + """</content>
    <gCal:quickadd value="true"/>
    </entry>
    req = urllib2.Request("http://www.google.com/calendar/feeds/default/private/full", event, headers)
    calresponse = urllib2.urlopen(req)
    # Normally, we stop here... but since Google likes traffic, we need to go to a slightly different url, with the same headers and POST data
    req2 = urllib2.Request(calresponse.geturl(), event, headers)
    try:
    calresponse2 = urllib2.urlopen(req2)
    # You can check but normally this is a 201 CREATED response or something, I don't really care... It's my code, right :P
    except HTTPError, e :
    # I placed this sleep to give the event at least a 20 second lifetime (poor, poor event...)
    import time
    time.sleep(20)
    # Retrieve the event's edit url
    eventurl = e.read().split("<link rel='edit' type='application/atom+xml' href='http://www.google.com")[1].split("'/>")[0]
    # The Deletion has to be done via httplib, because Google wants a DELETE request (urllib2 only handles GET and POST)
    conn = httplib.HTTPConnection("www.google.com")
    conn.request("DELETE", eventurl, "", headers)
    calresponse3 = conn.getresponse()
    # Again, they like to have a little more traffic, we need to append a session ID to that last url (we can find it in the redirect page)
    eventurl2 = calresponse3.read().split("HREF=\"")[1].split("\"")[0]
    # Ooh and here there is need of a new header, no questions please
    headers2 = {"Authorization": authsub, "User-Agent": "Java/1.5.0_06", "Content-Type": "application/atom+xml", "GData-Version": "2", "If-Match": "*"}
    conn.request("DELETE", eventurl2, "", headers2)
    calresponse4 = conn.getresponse()
    # No errors? Ok we can close the connection
    conn.close()
    index.php looks like this (again I don't guarantee that I'll keep my index.php page like that for eternity, but I'll notify you when the url changes):
    <?php
    print $_POST['token'];
    print $_GET['token'];
    ?>
    Last edited by gondil (2009-04-23 22:45:38)

    I posted this in another thread too, but since a discussion would be off-topic there (http://bbs.archlinux.org/viewtopic.php?id=64933):
    Here a Python script that creates a Google Calendar-event in the main calendar, with as subject the contents of a specified file.
    Feel free to post modifications/optimizations! I use it this way to get notified of unanswered conversations in finch (as in the thread above), it was easier to work with a file then with specifying arguments..
    PS. The script uses python-mechanize, which is in community.
    #!/usr/bin/python
    # From: gondil
    # To: the Arch Linux forums ;)
    # Version 2 (deletion added)
    import mechanize
    import sys
    import urllib2
    import httplib
    from urllib2 import HTTPError
    # Create a mechanize browser
    mech = mechanize.Browser()
    mech.set_handle_robots(False)
    # With Goggles desired UAgent
    mech.addheaders = [("User-agent", "Java/1.5.0_06")]
    # See the G-API: We need a some token here, that is displayed by /~pkelchte/ (mah personal php site on ESAT that only does that)
    mech.open("https://www.google.com/accounts/AuthSubRequest?scope=http://www.google.com/calendar/feeds/&session=1&secure=0&next=http://homes.esat.kuleuven.be/~pkelchte/index.php")
    # But before we get the token, we need to submit our user-data
    mech.select_form(nr=0)
    mech["Email"] = "" # REPLACE THIS WITH YOUR GOOGLE ACCOUNT
    mech["Passwd"] = "" # AND THIS WITH YOUR PASSWORD
    try:
    mech.submit()
    except:
    print "Did not submit credentials"
    sys.exit("Error in submitting credentials")
    # Because that's not enough, we need to confirm that we want to go trough with this and submit another form...
    mech.select_form(nr=0)
    mech.submit(id='allow')
    # By now, we have one token, but it's not the final token! We need *another* token, called the AuthSubSessionToken, sigh...
    mech.addheaders = [("Authorization", "AuthSub token=\"" + mech.response().read() + "\""), ("User-agent", "Java/1.5.0_06")]
    mech.open("http://www.google.com/accounts/AuthSubSessionToken")
    # A bunch of tokens later...
    # Let's use urllib2 to do this POST request (some xml-y thing is the string you would manually type in the "New event" box on Google Calendar)
    # Encore some headers
    authsub = "AuthSub token=\"" + mech.response().read().replace("\n","").split("=")[1] + "\""
    headers = {"Authorization": authsub, "User-Agent": "Java/1.5.0_06", "Content-Type": "application/atom+xml", "GData-Version": "2"}
    # Read the file that we're interested in! Damn, it's so interesting!!
    file = open('/home/gondil/public_html/fifo', 'r') # CHANGE THIS FILE WITH YOUR THING
    message = file.read()
    file.close()
    # The actual event
    event = """
    <entry xmlns='http://www.w3.org/2005/Atom' xmlns:gCal='http://schemas.google.com/gCal/2005'>
    <content type="html">""" + message + """</content>
    <gCal:quickadd value="true"/>
    </entry>
    req = urllib2.Request("http://www.google.com/calendar/feeds/default/private/full", event, headers)
    calresponse = urllib2.urlopen(req)
    # Normally, we stop here... but since Google likes traffic, we need to go to a slightly different url, with the same headers and POST data
    req2 = urllib2.Request(calresponse.geturl(), event, headers)
    try:
    calresponse2 = urllib2.urlopen(req2)
    # You can check but normally this is a 201 CREATED response or something, I don't really care... It's my code, right :P
    except HTTPError, e :
    # I placed this sleep to give the event at least a 20 second lifetime (poor, poor event...)
    import time
    time.sleep(20)
    # Retrieve the event's edit url
    eventurl = e.read().split("<link rel='edit' type='application/atom+xml' href='http://www.google.com")[1].split("'/>")[0]
    # The Deletion has to be done via httplib, because Google wants a DELETE request (urllib2 only handles GET and POST)
    conn = httplib.HTTPConnection("www.google.com")
    conn.request("DELETE", eventurl, "", headers)
    calresponse3 = conn.getresponse()
    # Again, they like to have a little more traffic, we need to append a session ID to that last url (we can find it in the redirect page)
    eventurl2 = calresponse3.read().split("HREF=\"")[1].split("\"")[0]
    # Ooh and here there is need of a new header, no questions please
    headers2 = {"Authorization": authsub, "User-Agent": "Java/1.5.0_06", "Content-Type": "application/atom+xml", "GData-Version": "2", "If-Match": "*"}
    conn.request("DELETE", eventurl2, "", headers2)
    calresponse4 = conn.getresponse()
    # No errors? Ok we can close the connection
    conn.close()
    index.php looks like this (again I don't guarantee that I'll keep my index.php page like that for eternity, but I'll notify you when the url changes):
    <?php
    print $_POST['token'];
    print $_GET['token'];
    ?>
    Last edited by gondil (2009-04-23 22:45:38)

  • How can I edit and delete IOS 7 IPAD safari favorites?

    In IOS7/Ad safari, how can I edit or delete safari favorites?
    Thanks!
    Alan

    Thank you so much!   This solved my problem.
    I wish Apple made this sort of thing more accessible in its documentation somewhere.   I Google'd extensively but was unable to find anything relevant.
    Thanks much again!
    Alan
    P.S. -- I assume there's no way to delete multiple bookmarks/favorites simultaneously (I did it one at a time)...

  • Can't edit or delete some photos

    iPhoto has got me scratching my head. I've got a few photos that I can't edit or delete. I ran the iPhoto permission, library, and thumbnail rebuilds without any success. I looked at the file permissions and I have r/w.
    One odd thing is that I can see them in a smart album that matches a keyword but if I click on Library/Photos and search on the keyword, the problem photos don't appear. The smart album contains both problem and non-problem photos.
    If I export/import a problem photo (losing the keywords in the process), the new version is fine. So I'd just do that but I can't delete the originals so they'd be hanging around forever
    Any ideas?

    Willaim
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    Regards
    TD

  • I can't edit or delete contacts on galaxy 3.

    I just purchase galaxy3 yesterday.
    Sales lady transfered my contacts  from my old phone to galaxy 3.
    I can't edit or delete the contacts.
    "you cannot delete contacts from read-only accounts, but you can hide tehm in
    contacts" that is the message.
    I can add new phone # w/o any problem.
    What should I do?

    Does it say anywhere in the contact information view where the contacts were saved? Google, phone, SIM card, Facebook or something else?

  • Hello, How can I edit or delete a custom label in the contacts list on iOS 7.0.3 on iPhone 4S ?

    Hello, How can I edit or delete a custom label in the contacts list on iOS 7.0.3 on iPhone 4S ?
    i need it so muchhh!

    Sort of depend on what you are trying to do precisely. In Edit mode, if you tap on any label, you will be given a list of options, plus an Add Custom Label option near the bottom of the list

  • How can I edit or delete a custom label in the contacts list on iOS 7 on iPhone 4S ?

    How can I edit or delete a custom label in the contacts list on iOS 7 on iPhone 4S ?

    Alfre311 wrote:
    I've been trying to find a way to do this since I updated to IOS 7, and I've just found the solution/explanation, even tho is a bit heavy to carry out.
    IOS 6 creates custom labels and save them giving you the option to delete them.
    IOS 7 creates custom labels but don't save them, so there is no need to have the option to delete them.
    But here comes the problem, if you have some custom labes saved in you Iphone / Ipad with IOS 6 and you update it to IOS 7, the device will keep those labels saved, but you wont be able to delete them.
    I realized this by going to contacts on Icloud. There those labels that I had on my devices weren't there. So simply restoring your device and configuring it as a new one to later sync your Icloud Contacts, will solve the problem.
    I know this post is old, but I might just try this with iOS 8. I have outdated custom labels that annoy me, because I still seem them in the list as options. If I get desperate enough, I may try your solution.

  • How can i edit and delete contacts in mail on my macbook pro?

    how can i edit and delete contacts in mail on my macbook pro?

    Answer is in this Apple discussion thread.
    Hope it helps.
    https://discussions.apple.com/thread/3101891?start=0&tstart=0

  • How can I edit or delete music from itunes match?

    How can I edit or delete music from itunes match?

    Hi,
    If you activate match on your new laptop, you will have access to all music that you matched or uploaded. You have the option to retain the music by downloading to your computer. If you delete music, it will delete from cloud.
    Jim

  • Since I moved to iCloud I can't Edit or Delete Address Book Contacts using my MacBook Pro

    Is not funny at all, everything was fine using Mobile Me but since I switch to iCloud I can't Edit or Delete my Address Book Contacts using my MacBook Pro or my MacPro.
    In my MacBook Pro, i open Address Book and on the left I have te list of all contacts, on the right the selected contact informations, below I only have "Add Contact" or "Share", my friend have "Edit" instead of "Add Contact".
    If I click on "Add Contact" this is the result:
    Are you sure you want to import 1 card? 1 card is a duplicate and will be updated.
    Everything fine using my iPhone or the website.
    Apple, what's going on?

    Here is some information and instructions from Apple:
    http://support.apple.com/kb/TS3998
    Please note that iCloud is geared towards being an instantaneous (and in some cases temporary) parking place for various things with iDevices; the access and useability from a computer is more difficult and, for most things, has to be done via the website icloud.com.

  • How do you disable "FILE IN USE" pop-ups so you can actually edit and delete PDFs?!

    Can someone please help me with this query:
    How do you disable "FILE IN USE" pop-ups so you can actually edit and delete PDFs?!
    I continue to have a pop saying that either the file in open somewhere in the serve- which it is not- and I cannot delete a particular pdf or edit it.
    It's incredibly frustrating and in the end I end up having four files with different names because it won't let me edit the original file!!!!

    Hi Amila1,
    Are the pdfs stored on a network location?
    If so is the Preview pane turned ON?
    Please check the doc: http://kb.globalscape.com/KnowledgebaseArticle10862.aspx
    Regards,
    Rave

  • I can't edit or delete mail messages on my iphone 5

    I can't edit or delete mail messages on my iphone. The edit icon at the top of the inbox is there and when pressed I can select messages but can't go further - the icon to delete has disappeared and the message that was selected deselects itself.
    I already tried to restore my iPhone, this didn't help.

    I have iPhone 4S and have had the same problem since I upgraded to iOS 7. I could only send and receive from iPhones.
    I tried everything that was suggested. Nothing worked.
    I called AT&amp;T this morning. Turns out, iOS 7 cancelled my text messaging plan!!!! I was able text to other iPhone users because of iMessage. They turned my texting plan back on and I can now text everyone again!!

  • After the update I can't edit or delete contacts

    After ios5 update I can't edit or delete contacts

    i am having the same issue with my iphone 3gs, ALSO you might wanna check to see if you can ADD appointments in the Calander app as i am having issues with that too!... sorry i dont have an answer to help, just wanted to let you know you are not the only one with this problem!

  • Bug: Repeating Google Calendar Events Show Up On The Wrong Days

    I've created a Google Calendar event that repeats "Daily," every two days, from 6:00pm to 6:30pm. It shows up fine in my Google Calendar, but the Pre's Calendar puts them on the wrong days. For example, the repeating event that should be scheduled for today shows up tomorrow (offset by +1 day). 
    I tried turning off network timezones, but the bug remains.
    Any help would be greatly appreciated. If this is a bug, how can I submit it to Palm?
    Thanks! 
    Post relates to: Pre p100eww (Sprint)
    Some new data:
    If I create the repeating event on my Pre, rather than via Google, it shows up on the Pre correctly. However, it only shows up for one day via Google (today); the event is not repeated. When I edit the event in Google, it's setup correctly. I tried saving the event from there, but it doesn't cause Google to recognize it should repeat.
    Very frustrating.
    Even more new data:
    Created yet another event via my Pre instead of via Google. This time Google picked up the correct repeat pattern, and my Pre now shows it on the correct days.
    Calendar sync needs serious work, based on my experience. I have issues with Facebook events showing up an hour later than they should, too. Dunno if this has been fixed yet.
    New Data (01/28/2010)
    Not sure why, but the above success reverted back to being off by one day; temporary success only.
    Message Edited by tlpbsd on 01-28-2010 11:52 AM
    This question was solved.
    View Solution.

    Hi, another quick question: you say you turned off network timezones.... did you make sure that the (now manually set) timezone is correct?
    Sounds similar to other issues related to the timezone being off, but usually the appointments were off by hours... not day(s).  However if your timezone is set to something really odd and the event you're creating is around midnight (again depends on a few things here), then MAYBE this is it.
    If it isn't, one of the support guys will have to chat with you privately about possibly collecting logs, getting more granular details, etc.

Maybe you are looking for

  • PAL DV footage to NTSC DVD help wanted!

    Hi there, apologies if this has been tackled elsewhere, but I couldn't locate it! I have a finished PAL edit of around 90 minutes in FCP 4.5 that I have output to a PAL DVD via DVD SP 4/Compressor 2. Following this, the client has also asked for an i

  • Print out of Shop Floor Papers in Default Language

    Hi Folks, User has a requirement to Print Shop Floor Papers in German language only irrespective of log on language. He does not want to manually select the German language in IW3D, as it picks the log on language. He wants it to be set as German lan

  • How to restore a macbook to original settings

    how do you restore a macbook to its original settings

  • Footnote numbers cut off

    I'm having an issue in Pages 5.1 whereby my footnote numbers in the main body of text will get cut off if a) they exceed one character, and b) they fall on the edge of the right margin of the document. Example: Part-way through my document I have a f

  • Instant Client with ADO on VBA -- Run-time error '-2147467259 (80004005)' -

    VB 6.0 uses Instant Client and Win XP Pro sp2 operating system. The MDAC has been checked and it is 2.8 sp1. The same project works on Win 2000 pro. Installing the run-time, thick, client makes the application work. We are getting the following error