How to drag drop a calendar item to a time in next week ?

Hi
creating a event through a big menu is fine ... but a very elegant and quick way is to select the cells and write the event. similarly, drag-drop a event is super easy way to re-schedule an event to another time. when i have 20-30 events to re-schedule from current to next week, drag-drop is best.
however, i am unable to do that. when i drag drop, i cant drop it to next week (i am using weekly view to be able to select any time of destination day for drop - the bi-weekly or monthly views don't allow choice of destination time)
this could be implemented in two ways :
1. in current weekly view, if the drag crosses the boundary, calendar shifts to the next (or previous) week. and then i drop the event.
2. there can be a option to see upto 2 weeks in columns just like 1 week view. i understand that the columns will be too tight but the fullscreen option makes it very usable.
or, you can suggest your own work-around.

instead of using target, try using currentTarget...
event.currentTarget.startDrag();
event.currentTarget.stopDrag();

Similar Messages

  • Having trouble dragging/dropping files from my MacAir to a shared drive window, when I try to drag/drop gets bounced out. Can anyone help with advice on how to drag/drop or otherwise copy files to a shared drive? thanks in advance

    I am having trouble dragging/dropping or otherwise copying files from my MacAir to a window for a shared drive.
    When I try to drag/drop, files get bounced out.
    Anyone know how to drag/drop in such a case, or otherwise copy files from MacAir to a shared drive (which I do  not believe is on a Mac, not sure if that matters).
    Any help much appreciated, thanks in advance
    J.

    I am having trouble dragging/dropping or otherwise copying files from my MacAir to a window for a shared drive.
    When I try to drag/drop, files get bounced out.
    Anyone know how to drag/drop in such a case, or otherwise copy files from MacAir to a shared drive (which I do  not believe is on a Mac, not sure if that matters).
    Any help much appreciated, thanks in advance
    J.

  • In ios 7, how do I get the calendar to open each time in list mode?

    In ios 7, on the iphone 5, how do I get the calendar to open each time in list mode? It always opens is strange new mode and goes to list mode only if I click the search icon.

    For some weird reason beyond my comprehension, and I am a smart fellow I think; Adobe starting with acrobat/reader 8 has decided to hid the menu icon Ribbon (i guess you would call it) until you have a PDF open. In versions past if you had these icons on the screen you could actually use them to open Pdf's or create pdfs from scans.
    Pesonally for me its a dumb idea. But was justified as allowing for more screen area to view. The guy that thought up the idea should be taken out behind the barn and given 10 licks for stupid ideas. :-)

  • How to save earlier Outlook calendar items when syncing?

    When I sync my new blackberry it prompts me to delete all calendar items from my desktop Outlook from before I had the blackberry.  How can I keep my earlier calendar items in my Outlook on my desktop?  I do not need them on my blackberry, but I do need them on my desktop as a record.
    Solved!
    Go to Solution.

    carsonclark,
    I run BBDTM 4.7.  I don't run blackberry enterprise server. 
    In BBDTM you can go to Synchronization>>Configure>>Synchronization  Select the "Synchronization" botton on the right.
    On the new screen, select "Calendar" and click "Setup..."
    0) which mail application is selected?
    1) do you have "two way sync" selected form the second screen?
    2) do you have "transfer only future items" from the third screen?
    -Frank

  • How do i text an calendar item

    How do I text a  iphone calendar item to someone else?

    Hi,
    From your Safari menu bar click Safari / Preferences then select the Autofill tab.
    Click the Edit button next to *Other forms*
    Delete the url's for the site(s) you have problems with.
    Quit Safari (Command + Q) then relaunch Safari for changes to take effect.
    If you are running v10.6.2 as your profile indicates, there are updates available.
    Click the Apple () menu (top left in your screen) Software Update ...
    Carolyn

  • How can I remove dropdown calendar menu from date/time field.

    I set up a javascript calculation based on the input of a date field. As long as the user enters the date manually the script works fine. If user attempts to select date by drop down menu then script will not work. How can I remove the calendar feature from the Date field?

    You may have to wire custom script to get you what you need. That would probably work on 'exit' event.
    Just you give you better Idea here is some thing I have on a date field. If user types his own date instead of picking from calendar this code checks whether it is valid date or not and returns to the same field either they enter valid date or clear the field.
    This is FormCalc script. You may get the idea how this works and make it work for you using the same logic either in FormCalc or JavaScript.
    ----- form1.SOF.Head.Table1.Row1.ReqDate.Date_ReqDate::exit: - (FormCalc, client) ------------------
    if (HasValue($)) then
    if (Len($.rawValue) == 10) then
    var S1
    var MM
    var DD
    var YYYY
    var Derror
    var D1
    var D2
    var S2
    Derror = 0
    D1 = 0
    D2 = 0
    S1 = $.rawValue
    D1 = At(S1, "-")
    S2 = Right(S1, 5)
    D2 = At(S2, "-")
    if (D1 > 0 and D2 > 0) then
    if (D1 == 3 and D2 == 1) then
    MM = Substr(S1, 1, 2)
    DD = Substr(S1, 4, 2)
    YYYY = Substr(S1, 7, 4)
    elseif (D1 == 5 and D2 == 3) then
    MM = Substr(S1, 6, 2)
    DD = Substr(S1, 9, 2)
    YYYY = Substr(S1, 1, 4)
    else
    Derror = Derror + 1
    endif
    else
    Derror = Derror + 1
    endif
    if (Oneof(MM, "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12")) then
    Derror = Derror
    else
    Derror = Derror +1
    endif
    //xfa.host.messageBox("MM"+ Derror, "Incorrect Date", 1, 0)
    if ((Oneof(DD, "01", "02", "03", "04", "05", "06", "07", "08", "09")) or ((DD >=10) and (DD <= 31))) then
    Derror = Derror
    else
    Derror = Derror + 1
    endif
    //xfa.host.messageBox("DD"+ Derror, "Incorrect Date", 1, 0)
    if ((YYYY >= 1975) and (YYYY <= 2050)) then
    Derror = Derror
    else
    Derror = Derror + 1
    endif
    //xfa.host.messageBox("YYYY"+ Derror, "Incorrect Date", 1, 0)
    if (Derror > 0) then
    xfa.host.messageBox("Preferred valied date between Jan 01, 1975 and Dec 31, 2050. ", "Incorrect Date", 1, 0)
    xfa.host.setFocus($.somExpression)
    else
    //good
    $.formattedValue = Format("MMM DD, YYYY", Concat(YYYY, MM, DD))
    if ($event.shift) then
    //xfa.host.messageBox("Shift")
    var sh
    sh = 1
    //xfa.host.setFocus("xfa.form.form1.SOF.Head.RadioAttachTo.RadioAttachTo3")
    else
    if (xfa.event.commitKey == 1) then
    var A
    A = 1
    else
    xfa.host.setFocus("xfa.form.form1.SOF.Head.Table1.Row2.CustName")
    endif
    endif
    endif
    else
    xfa.host.messageBox("Preferred valied date in format MMM DD, YYYY.", "Incorrect Format", 1, 0)
    xfa.host.setFocus($.somExpression)
    endif
    endif
    Good luck,
    SekharN

  • How do I get my calendar to adapt to time zone change?

    My calendar is run in MS Outlook on my windows office computer and syncs via Exchange 2003 server to my iPhone.
    I live in Europe. I recently attended a business event in the States. All my appointments were in my Outllook calendar in local time. But when I got to the States and changed my iPhone to local time, all my appointments were shifted by 9 hours, this being the time difference.
    The only hack I could find to get them to display properly was to pretend my phone was still on European time and reset this manually to the local time in California. Only then did the appointments appear at the right time.
    Surely there must be a better way? Otherwise, what's the point of all the settings option for local time support?

    Was the objective to have the appointments and calendar show in Euro-time while in California with the time shifted +9 hours while the device time was on California time?  As  i understand it, Location services controls the device getting it's own time from the local cell infrastructure, and calendar time zone support would allow the calendar to be displayed in a time zone other than that physical time zone the device is  present in....everytime this question comes up I have to review these two kb's...they are not light reading
    http://support.apple.com/kb/HT4576
    http://support.apple.com/kb/HT4504

  • How can I see a calendar item that was in my backup

    I did a full backup at home of my 8330 with BB Desktop Software a week ago.
    But I accidentally left my phone in the office and can't retrieve it until Monday.
    The data I need is in one calendar entry in the backup. How can I see it? I don't own Outlook or Office.
    I can't figure out where to start.
    Solved!
    Go to Solution.

    Not easily, as the backups are intended to restore to the BlackBerry device, not be viewed and/or edited on the PC.
    Try to find ABC Amber IPD Converter software for your PC. It can read your backup IPD files and save to Excel or another PC file format.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to drag & drop audio files into Safari?

    With YouTube's new Video Editor, you can drag audio/video files on their page and use them in your video. Well Safari isn't letting me do that. It'll play it instead "The address bar will turn form YouTube.com to file:// How can I get this to stop? It is very frustrating.

    I have this problem to! Ive spent the past 2 days trying to figure it out, its really ******* me off and wasting my time. ***? Who could possibly designed something this stupid???

  • How do I get a calendar notification with travel time/traffic info?

    Hi everybody,
    I saw an IOS 8 screenshot showing a calendar reminder in the lock screen that not only showed the upcoming calendar event info, but also said something like "to be in time, you should leave at 11:31". On the web page showing that screenshot, it was also said that this travel time info takes the current traffic info into account.
    When I add a calendar event, I'm setting the proper event address plus the travel time option based on my location, and I'm also setting a calendar alert to something like "Notify me 1h prior leaving time". And actually, I'm getting that notification - but without that neat info when to leave exactly (which seems to include the current traffic info as said above)!
    To be clear, I'm not talking about the traffic conditions WIDGET. This works flawlessly on my iPhone 5s with IOS 8. I'm talking about a lock screen calendar reminder that included the time to leave for an appointment!
    I'm inserting the screenshot here (it's actually in German as I am from Germany):
    Can anybody help on how to get those calendar reminders?
    Best,
    Gero

    Hello gerofromronnenberg
    To see that information, you would need to swipe down to bring up Notification Center to bring up the time that you should need to leave your current location.
    Notification Center
    http://help.apple.com/iphone/8/#/iph6534c01bc
    Regards,
    -Norm G. 

  • How can I enlarge the calendar section for full-time events?

    Hi folks,
    since the update to ios 5 the calendar section at the top of the daily view (with full-time events) is limited in size. If I enter more than two messages I have to scroll to see all events. This is annoying since I typically miss the birthdays I cannot see.
    How can I change the behaviour to the "old" style: show me all full-time events and hide the bar that separates the full-tim events?
    Cheers
    Claus

    I understand that there are a couple of icloud sync apps available for the Galaxy, check its app store or google.

  • How to use the SAP calendar in Workflow deadline time.

    Hi
    I’m setting a deadline time (LatestEnd, LatestStart) as an expression for some tasks in several workflows, but there’s an issue when this time is reached on holiday or weekend because the deadline for the Workflow have to be moved to the next working day, does anybody knows how can I set it up without ABAP programming, just workflow tools or WF functions?.
    I already made a function to make this calculation but I'd like to know if this can be done directly by SAP (workflow) standard.
    Thanks a lot 
    Regards
    Felipe Uribe

    Try to make use of the following Function module:
    DATE_CONVERT_TO_FACTORYDATE
    FACTORYDATE_CONVERT_TO_DATE
    LAST_FACTORYDATE_GET
    In your attribute determination.
    Thanks
    Arghadip

  • How to re-execute the error items at one time in SMQ2(t-code)

    Hi Experts,
    today i went to check the Inbound Queues using SMQ2, there are so many error queues, how can i re-execute these error queues at one time?
    Thanks&Regards,
    Su

    Hi Su,
    While you are inside a particular error queue, choose 'Unlock' and in the popup give CF* (or whatever queue prefix you have) and run. It will execute all the error queues / LUWs starting with CF*, for example.
    Regards,
    biplab

  • How to color a list box item at run time

    I do not want to change colors in a selected or a highlighted item.  I want to color foreground on any item based on a program condition.
    IN windows forms I could change the drawmode property to ownerdrawfixed and then override the listbox rendering event and paint the item based on condition.
    I don not find such a property in the WPF listbox.  Is there a different way to do this?
    NR

    Thanks Olaf.   I changed the section below to my code as you suggested and it works fine now.  I can now modify it to make it applicable to other scenarios.
    public
    partial
    class
    MainWindow
    : Window
    public
    System.Collections.ObjectModel.ObservableCollection<string>
    MyItems { get;
    set;
    public
    MainWindow()
    MyItems =
    new
    System.Collections.ObjectModel.ObservableCollection<string>();
    InitializeComponent();
    private
    void
    button1_Click(object
    sender, RoutedEventArgs
    e)
    MyItems.Add(textBox1.Text);
    this.DataContext
    = this;
    NR

  • How do I restore a few items saved in Time Machine on a different computer?

    After upgrading my G5 Mac to Leopard, and using an external Firewire drive as the Time Machine backup, both of my hard drives crashed on the G5. To make a long story short, I ended up with a new iMac. Luckily, all my data WAS saved on the Time Machine (yeah!!!).
    I used the Migration Assistant to copy the applications, user accounts, and network settings to the iMac. And while I don't have the space to move ALL the data from my backups to my new Mac, there are some things I need to move that I haven't been able to find. These are:
    • Old E-mail stored on my hard drive (not the server), most recently in Apple's Mail program (previously in Entourage).(Migration Assistant didn't copy the old mail.)
    • E-mail addresses saved in Entourage (these didn't get moved to the Address Book application).
    • Firefox Bookmarks
    Thanks for your help!

    I'm happy to report that I found all my "missing" data...turns out it was just under a different user!

Maybe you are looking for

  • At a loss on where to go on this code

    I am trying to write program that computes fahrenheit into celcius with input from a dialog box. Here is what I have so far. I have tried other things but nothing work and I am at my wits end. Please help. // ComputeCelsius.java: Convert Fahrenheit i

  • Sudden system slow down and cursor respond slowly ,

    when i check  error report  it shows: Description Faulting Application Path:    C:\Windows\explorer.exe Problem signature Problem Event Name:    BEX64 Application Name:    Explorer.EXE Application Version:    6.3.9600.17039 Application Timestamp:    

  • HT2905 How to remove duplicate songs from the iPhone when the duplicates are not listed in the iTunes library on the computer.

    How can I remove duplicate songs from the iPhone4. The duplicates are not listed in the computer iTunes library.

  • Direct to shipment  to Customer

    I have one functional Problem and is as follows My client manufactures machines , that machines consist of several part , some time my client Sales a machine with some part pending .  This pending parts can be shipped latter.Some times what my client

  • IOS 4.2, raw file support changed?

    Since the 4.2 update, photo apps such as Photogene, PhotoForge, Filterstorm no longer work with imported raw files (Nikon NEF from a D50 at least). They either crash or only load the tiny preview image. JPEGs don't seem to be an issue. Is this a bug