Moving list items between folders

Is it possble to move a list item between folders in the same list. I can't fond how to do this?

Ok, well...I had to ask on the "Content Approval" and configuration side of things just to make sure.
For me, I've tried several times on different lists and have been successful each time whenther its been through a custom "Datasheet" view, or by using the "Edit in Datasheet" option from the "Actions" menu (both do the same thing).  The one thing that you must do when copying the row is to select only the cells you want copied and not the entire row, or it will most likely throw either the "Read-Only" error you've been seeing, or a "You cannot perform this operation on an attachment field" error.
Here's an example of what I did to both produce the error you've been seeing, and to actually perform the paste operation successfully:
Created a custom list.
Added in 3 fields
first: "single line of text" not required
second: "single line of text" required
third: "Choice" with three options, not required
Through the default view, I then added in a couple new items with some of the optional fields filled in and a couple without (just to test to make sure that "Required" vs. "Not Required" didnt affect the ability to modify in DataSheet).
Next, I created a custom DataSheet view.
Next, I created a subfolder (after enabling it through the list "Advanced Settings").
Next, I went to the custom view to see the test items in a DataSheet view.
In the view, I see the first column (sorting column), a "Type" column specifying if the item is a folder or "item", the default "Title" column, and my additional 3 custom columns.
To copy to the subfolder:
Starting from the "Title" field, I click and drag-to-select the 4 total columns on the row I want to copy, then do a "Ctrl+C" to copy the row's data.  Then I click on the folder icon for the subfolder to go into the folder.  Once in the folder, I select the "Title" column and do a paste ("Ctrl+V") and the row is now copied.  If I then go back and choose the default "AllItems" view, I can now see the record has indeed been copied and now exists in both the top level and the subfolder.
To cut an item from one location to another (top-level to subfolder, subfolder A to subfolder B, etc.) do the exact same thing, but after selecting the cells and copying - click on the grey cell for the row (far left column) to select the entire row then hit "delete" (a popup will ask you to confirm), then proceed to the target location and paste as mentioned above.
The reason for this is that it wont let you leave the view until you either delete the row or place something back into it.
The above does work providing that you only select the cells you want to copy and not the entire row.
Now, to get it to fail and throw errors, one of a couple things has to have happened.
First, if you try and select the entire row (selecting from the leftmost column - the gray background column), different errors will present themselves depending on the selected cell you try and paste into.
Pasting into the same column (in your target location, subfolder etc.) will now throw the "The selected cells are read-only" error.
Trying to paste into the next cell (the "Sort" or "Attachment" column) will throw a "You cannot perform this operation on an attchment field" error.
Trying to paste into the "Type" column will also throw the "Read-Only" error.
Lastly, if you try and paste into any of the other cells, you now see a "The information cannot be pasted because the paste area is not completely on the list.  Paste into a different cell or try inserting more columns or rows into the list." (this error refers to the fact that the selected columns you copied to not directly match up with where you're trying to paste them).
So again, the way that you'll have to copy the items is make sure that you only select the cells that you want and nothing else (only select the cells you would normally fill-in through the "New Item" form since they're the only one you can directly edit)...and make sure that when pasting, you paste back to the starting cell from your copy (as in the "Title" column from my example).
Give it a shot again noting the cells you're trying to copy and post back with the results.
- Dink

Similar Messages

  • Inserting ordered/unordered list items breakes the document design

    Hi,
    I use JEditorPane to edit HTML document. When I insert ordered/unordered list items, it breakes the design of the document. For example, I have next peace of the document:
    <center>
    This text is centered.
    One more line...
    </center>
    after inserting list item between text lines, document looks like :
    <center>
    This text is centered.
    </center>
    <ol>
    <li>
    </li>
    </ol>
    <center>
    One more line...
    </center>
    Note, that center tag is closed before list item and opened after it.
    Is it possible that inserted list items will save the original design of text around ?
    Thanks.
    .Vlad.

    Change the Leading in the Character Pallet to a smaller number, and increase the Space After in the Paragraph Pallet.
    The space between lines in the same paragraph is the leading, the space between paragraphs is not leading, and trying to achieve it with the leading field always creates more problems than it solves.

  • Set vertical gap of menu items, list items...

    Hi, is there any way to adjust the vertical gaps between menu items, between list items, between combo box list lits? I am trying to make my Java application look like Windows application, but the vertical gaps in these Java components are just too big. Thanks!
    Yu

    Sorry for the massive bit of code, but you can use this to display the UI defaults and decide what to change if you want to try to affect (simple) global changes to the look and feel:
    It's far from beautiful but I've found it helpful from time to time.
    import javax.swing.JFrame;
    import javax.swing.Icon;
    import javax.swing.JLabel;
    import javax.swing.JScrollPane;
    import javax.swing.Box;
    import javax.swing.BoxLayout;
    import javax.swing.UIManager;
    import javax.swing.UIDefaults;
    import javax.swing.border.Border;
    import java.awt.BorderLayout;
    import java.awt.Graphics;
    import java.awt.Component;
    import java.awt.Color;
    import java.awt.Font;
    import java.awt.Insets;
    import java.util.Iterator;
    import java.util.Set;
    import java.util.TreeSet;
    import java.util.Comparator;
    import java.util.Enumeration;
    public class DefaultsDisplayer extends JFrame
         private static class ResourceLabel extends JLabel
              private ResourceLabel(Object key, Object value)
                   super(key.toString());
                   if(value instanceof Icon)
                        setIcon(new SafeIcon((Icon)value));
                   else if(value instanceof Color)
                        setIcon(new ColorIcon((Color)value));
                   else if(value instanceof Font)
                        setIcon(new ColorIcon(null));
                        setFont((Font)value);
                   else if(value instanceof Border)
                        setIcon(new ColorIcon(null));
                        setBorder(new SafeBorder((Border)value));
                   else if(value instanceof String)
                        setIcon(new ColorIcon(null));
                        setText(key.toString() + ": '" + value.toString() + "'");
                   else
                        setIcon(new ColorIcon(null));
                    setText(key.toString() + ": " + value.getClass().getName());
         private static class SafeIcon implements Icon
              private Icon icon;
              private SafeIcon(Icon icon)
                   this.icon = icon;
              public int getIconWidth()
                   return icon.getIconWidth();
              public int getIconHeight()
                   return icon.getIconHeight();
              public void paintIcon(Component comp, Graphics g, int x, int y)
                   try
                        icon.paintIcon(comp, g, x, y);
                   catch(Exception e)
         private static class ColorIcon implements Icon
              private Color color;
              private ColorIcon(Color color)
                   this.color = color;
              public int getIconWidth()
                   return 32;
              public int getIconHeight()
                   return 32;
              public void paintIcon(Component comp, Graphics g, int x, int y)
                   if(color == null)
                        return;
                   g.setColor(color);
                   g.fillRect(x, y, 32, 32);
         private static class SafeBorder implements Border
              private Border border;
              private SafeBorder(Border border)
                   this.border = border;
              public Insets getBorderInsets(Component c)
                   try
                        return border.getBorderInsets(c);
                   catch(Exception e)
                        return new Insets(0, 0, 0, 0);
              public boolean isBorderOpaque()
                   return border.isBorderOpaque();
              public void paintBorder(Component c, Graphics g, int x, int y, int w, int h)
                   try
                        border.paintBorder(c, g, x, y, w, h);
                   catch(Exception e)
         private static class ObjectComparator implements Comparator
              public int compare(Object o, Object p)
                   String s = o.toString().toLowerCase();
                   String t = p.toString().toLowerCase();
                   return s.compareTo(t);
         public DefaultsDisplayer()
              super("Default Displayer");
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              Box box = new Box(BoxLayout.Y_AXIS);
              UIDefaults defaults = UIManager.getDefaults();
              Set keys = new TreeSet(new ObjectComparator());
              for(Enumeration e = defaults.keys(); e.hasMoreElements(); )
                   keys.add(e.nextElement());
              Object key, value;
              JLabel label;
              for(Iterator i = keys.iterator(); i.hasNext(); )
                   key = i.next();
                   value = defaults.get(key);
                   label = new ResourceLabel(key, value);
                   box.add(label);
                   box.add(box.createVerticalStrut(5));
              getContentPane().setLayout(new BorderLayout());
              getContentPane().add(new JScrollPane(box), BorderLayout.CENTER);
              setLocation(50, 50);
              setSize(500, 500);
              doLayout();
              setVisible(true);
         public static void main(String[] args)
              new DefaultsDisplayer();
    }

  • Moving files between folders is very slow

    Hi, I have an iMac 2011. Processor: 2.7GHz Intel Core i5/ Memory 4GB
    OS X Yosemite, version 10.10.1
    After I change my OS from Mavericks to Yosemite, moving files between folders is very slow.
    For example, if I move one jpg file in Desktop to Pictures folder (or just any other folders like Trash), it takes about 3 seconds.
    When I was still using Mavericks, it made that Ding sound and transferred files right away. However, now, although it makes the Ding sound right away, the file is still there for 3 seconds.
    I tried to clean up my mac using many apps, but they never fixed this problem.
    I've also tried what I saw on this one thread. OS X File Transfers Very Slow
    Go->Connect to Server then type "cifs://server-address" but it says there is a problem and did nothing. (maybe different issue)
    Please help!

    There may be other issues, but you installed the "Genieo" or "InstallMac" ad-injection malware. Follow the instructions on this Apple Support page to remove it.
    Back up all data before making any changes.
    Besides the files listed in the linked support article, you may also need to remove this file in the same way:
    ~/Library/LaunchAgents/com.genieo.completer.ltvbit.plist
    If there are other items with a name that includes "Genieo" or "genieo" alongside any of those you find, remove them as well.
    One of the steps in the article is to remove malicious Safari extensions. Do the equivalent in the Chrome and Firefox browsers, if you use either of those. If Safari crashes on launch, skip that step and come back to it after you've done everything else.
    If you don't find any of the files or extensions listed, or if removing them doesn't stop the ad injection, then you may have one of the other kinds of adware covered by the support article. Follow the rest of the instructions in the article.
    Make sure you don't repeat the mistake that led you to install the malware. Chances are you got it from an Internet cesspit such as "Softonic" or "CNET Download." Never visit either of those sites again. You might also have downloaded it from an ad in a page on some other site. The ad would probably have included a large green button labeled "Download" or "Download Now" in white letters. The button is designed to confuse people who intend to download something else on the same page. If you ever download a file that isn't obviously what you expected, delete it immediately.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates
    if it's not already checked.

  • C3-01 - Moving Photos Between Folders On SD Memory...

    I’m stumped on how to move photos between folders on the SD memory card in my new C3-01.
    When I take a photo, it saves it to the ‘Images’ folder on the SD card, but there doesn’t appear to be an easy way to get it from that folder onto one of my other folders.
    On my previous phone, I’d do the following –
    1 – Open the item
    2 – Go to ‘Options’
    3 – Scroll down to ‘Move’
    4 – When the list of available options was displayed, I’d highlight the ‘Memory card’, and press Options’ again to get an ‘Open folder’ option.
    5 – Select the ‘Open folder’ option.
    6 – Scroll down to the folder I wanted to put the photo in to.
    However, on my C3-01, once I get to option 4 above, there don’t appear to be any other options available. I now have a situation where I’ve moved items from my Images folder on my memory card but can’t put them into any sub-folders.
    Is this function no longer available? If so, it does seem a bit unusual.
    Hope someone can help.
    Many thanks
    Martin

    if you want to move selected file one folder to another ..thn once you marked the file ,select move option...thn make a long press on memory card option ,thn open drive option will show.,once you open the foldr thn make a small press on the foldr.....
    to move files in c3-01 
    once you mark the file,,,thn press on move option..thn "open folder" option will show
     to open the foldr, make a long press on folder(on touch screecn)..
    hope you understood....my english is so bad

  • Problem Moving Images Between Folders In Bridge (Windows 7 Professional)

    I have just bought a new computer with Windows 7 installed. I now also have Adobe CS5 Design Premium installed.
    When I try to MOVE or DRAG and DROP an image from one folder to another using Adobe Bridge I get the following error message:
    "The operation cannot be completed because you don't have sufficient permissions"
    When I try the same thing in Windows Explorer it tells me that I need Administrator Permission. I click OK and it works in that programme.I am actually the Administrator
    Can anybody tell me how I can configure Bridge to undertake this task please.
    Many thanks in anticipation
    Adrian 

    Dear friends
    To my great relief I have now sorted this issue and offer the following as the Correct Answer. My sincere and grateful thanks go to Curt and Yammer, above, who have helped me so much in sorting this Windows 7 issue which is clearly very relevant to Bridge users also. Any slowness to grasp what they have been saying is down to me!
    The key to solving this issue lies is understanding that in terms of Windows 7 Security, every internal or external hard drive, plus folders, sub-folders and files thereon has an OWNER. Also each OWNER has a certain level of PERMISSION to do things such as moving files to a different folder, deleting or re-naming them etc. If you try to do things that you don't currently have Permission to do, that is when you get an ‘Access Denied’ error message. Also your system has an Admistrator or Administrators and at the outset you need to ensure through the Control Panel that you are listed as one of them. .
    If, like me, you didn't realise these things, (and why would you if Microsoft or your computer or hard drive suppliers couldn't be bothered to really make sure you knew about them), then trying to fathom the ‘Access Denied’ problem becomes a stressful and frustrating nightmare as I can testify having spent a week at it!
    The steps that I took to resolve the issue and which I believe now constitute the 'Correct Answer' are as follows:
    First make sure that you have Administrator rights on your system via the Control Panel
    Next ‘right click’ on the Drive whose files you want to gain full access to, for example the drive that your pictures are stored on, and click on 'Properties'.
    Under the Security tab you will see a list of Groups and Users on this drive and the Permissions that they have to do things.
    Before doing anything to edit these Permissions, first click on the Advanced button. This opens another window with a tab showing the Owner of this drive.
    Click on the Owner tab and if you are not already listed as the owner, make yourself the owner by selecting your name from the list. I believe it should appear there if you are an admistrator or user. (In my case at this stage the owner was initially shown as an obscure string of numbers and letters which I believe identified the drive when it was connected to the lap top I was using before I upgraded my machine)
    Now be sure to check the box that says "Replace Owner on Subcontainers and Objects" and the click Apply. On completion of this step, the drive in question and all the folders, subfolders and files thereon should now be 'owned' by you. You could check this out by right clicking on a particular folder then clicking Properties > Security > Advanced > Owner. Your name should appear. So far so simples!
    Now go back to the Security Tab for your drive (Step 2 / 3 above) and look at the Permissions you currently have. Your aim now is to allow yourself 'Full Control.' If you don’t currently have this level of permission click Edit, select your name on the list, check ‘Full Control’ and 'Apply' the change.
    I think I'm right in saying that at this point whilst still working in the Drive directory you are now given the option of ticking boxes which allow you to, in effect, cascade the permission you have just granted yourself to all the files and folders on that drive. Tick the box to allow this and Windows should then take care of the rest.If I'm not quite correct here then in my particular case, for example, all my images were stored on my external drive. The top level, or 'parent' folder in which all my pictures could be found was the 'My Pictures' folder and I had created a number of folders and subfolders ('child ' folders) within that folder. The permissions I gave to the Parent folder – My Pictures – were cascaded down through the Child folders.
    On completion of the above step I tested the result in Windows Explorer by dragging a few files back and forth between folders and it now worked perfectly - I was now able to move / delete / rename etc all files without now getting the dreaded access denied message. What a sense of relief! This meant that I could now open Bridge normally rather than having to right click it and 'Run As Admistrator' - albeit that is a very useful thing to do until you get the problem sorted as described.
    Somebody said to me the other night that when you buy a car you buy it to enjoy the drive, not to have to tinker with the engine. Microsoft and companies that supply and install Windows 7 on new computers please take note!

  • Dragging files between folders in Finder copies them instead of Moving.

    Previously all files have been moved when I have dragged them between folders. As of today they all of a sudden is copied and I can't use any option key during my drag to get it to move. Of interest is that whe I try to delete the original file I get a message saying that it is locked.
    Running OS X 10.6.8.
    Note that the files remains on the same disk.

    locked files are generally copied and not moved to new locations.  if one or more of the files you're moving are locked then "all" the files will be copied to the new location, not just the locked ones.
    solution : move locked and unlocked files separately or unlock the locked files before moving them.
    hope that hleps.

  • Moving a List Item attachment from one list to another

    Hi,
    What are the best way of coping / moving the List Item attachment using
    jQuery / JavaScript in SharePoint 2013 from one list to another.
    Thanks
    Saroj
    Impossible is nth but good coding :-)

    For your needs better try to code your own solution. See
    SharePoint JavaScript Class Library for details. You can have two possible architectures:
    Make all work from JavaScript. And the first your step will be
    addItem method of SP.List.
    Make processing of selection on client in JavaScript and call your custom server-side component (may be an application page) for items copying (creating copies in new list of already existed items from initial list.). See
    this for example.
    Also be careful with context.load. It's recommended to write all next code in context.executeQueryAsync. Use Firebug in FF and developer tools in Chrome for debugging your code and to find what is wrong.
    Or 
    https://social.msdn.microsoft.com/Forums/sharepoint/en-US/1d01a48f-c28b-467b-acd1-22e5fb266670/how-to-retrieve-list-items-and-copy-it-to-other-list-using-javascript-object-model?forum=sharepointdevelopmentprevious
    <script type="text/javascript">
    ExecuteOrDelayUntilScriptLoaded(retrieveListItems, "sp.js");
    var siteUrl = 'Site Url';
    function retrieveListItems() {
    var clientContext = new SP.ClientContext(siteUrl);
    var oList = clientContext.get_web().get_lists().getByTitle('List1');
    var camlQuery = new SP.CamlQuery();
    camlQuery.set_viewXml('<View><Query><Where><Geq><FieldRef Name=\'ID\'/>' +
    '<Value Type=\'Number\'>1</Value></Geq></Where></Query><RowLimit>10</RowLimit></View>');
    this.collListItem = oList.getItems(camlQuery);
    clientContext.load(collListItem);
    clientContext.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded), Function.createDelegate(this, this.onQueryFailed));
    function onQuerySucceeded(sender, args) {
    var listItemInfo = '';
    var listItemEnumerator = collListItem.getEnumerator();
    while (listItemEnumerator.moveNext()) {
    var objListItem = listItemEnumerator.get_current();
    var clientContext = new SP.ClientContext(siteUrl);
    var oList = clientContext.get_web().get_lists().getByTitle('List2');
    var itemCreateInfo = new SP.ListItemCreationInformation();
    this.oListItem = oList.addItem(itemCreateInfo);
    oListItem.set_item('Title', objListItem.get_item('Title'));
    oListItem.update();
    clientContext.load(oListItem);
    clientContext.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceededFinal), Function.createDelegate(this, this.onQueryFailed));
    function onQueryFailed(sender, args) {
    alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
    function onQuerySucceededFinal(sender, args) {
    //Do next set of operation if needed
    </script><input name="btnVarIQReject" onclick="retrieveListItems()" type="button" value="Submit"/>
    Please use my above POC code to start. This will copy all the title field value from list1 to list2
    If this helped you resolve your issue, please mark it Answered

  • Why is moving between folders glacial, while file renaming instantaneous?

    Any ideas as to why moving images between folders are glacial (1-2 per second), while file renaming instantaneous?
    Both do the similar operations to the file system, both need to update the SQLite entry for the file, but orders of magnitude between their performance? This on a recent Macbook Pro, running "all" Lr versions including 4.1beta with the catalog (120' images) on a SSD, while the images are stored on a FW800-attached disk.

    IIRC, there have been reports that this problem can be avoided (more or less) by not having the Grid shown during the move (due to LR not trying to update the Grid).
    Beat

  • Groupwise Client extremely slow moving between folders

    Hi,
    We're experiencing a very unusual issue with a single user where switching between folders can take up to 30 seconds, usually no less than 25 seconds. This problem only occurs in the Groupwise 2012 Windows client (12.0.2), but we experienced the exact same problem with the same user last year at this time with an earlier version of the 2012 client. What is strange is that not only is this the only user experiencing the problem, but there is no issue when accessing the account via web access or the Groupwise 8 Linux client. Last year we opened an SR with Novell for this problem but they were unable to resolve the issue and the only solution we came up with was to create a new account for the user and migrate all her email over. This was less than ideal, but the problem had dragged on for a month and we could not come up with a better solution.
    It appears that the problem emerges when many hundreds of emails get filed, probably at least 2,000 items on a single day in this most recent case. After that, the client experiences this slow down on any computer, not just the user's computer.
    I would appreciate any insight that would shed light on this problem.
    Thank you.

    Wrong forum! Apologies. Will post to the correct forum.

  • How to add Gap between dropdown List Items - ComboBox in MFC VC++

    How to add Gap between dropdown List Items - ComboBox in MFC VC++

    Did you tried SetItemHeight() inside your App .
    Thanks
    Rupesh Shukla

  • LR5 stopped moving files between folders

    Hi everybody,
    I've noticed today that my LR5 stopped moving files between folders, I select files I want to move and drag them over to a new location like I always did before with only difference is now nothing happends, no messages with errors, nothing... I tried to google it and couldn't find anything related to my problem.
    I'm using Windows 8 x64. I checked the permissions on all the photo folders and everything seems to be correct. I also run LR under admin rights, so there shouldn't be any OS related issues... in addition, it was working just fine till today.
    I hope you can at least point me in right direction to dig more info on the problem with my LR5.
    Thx!

    Hi everybody,
    I've noticed today that my LR5 stopped moving files between folders, I select files I want to move and drag them over to a new location like I always did before with only difference is now nothing happends, no messages with errors, nothing... I tried to google it and couldn't find anything related to my problem.
    I'm using Windows 8 x64. I checked the permissions on all the photo folders and everything seems to be correct. I also run LR under admin rights, so there shouldn't be any OS related issues... in addition, it was working just fine till today.
    I hope you can at least point me in right direction to dig more info on the problem with my LR5.
    Thx!

  • It stopped sending mail and moving messages between folders, junk messages stopped being moved.

    Recently, Thunderbird stopped sending mail and moving messages between folders, junk messages stopped being moved.

    Further notes (different user, same problem):
    * This is a problem that started in Thunderbird 32
    * This involves both automatic (filter) moves and manual moves
    * This includes use of keys and hotkeys (the delete key, for example)
    * Restarting Thunderbird does seem to "reset" the problem... for a while. I notice the problem most when either I've been away from the computer/program for a while or when waking a laptop computer from a sleep or hibernation state.

  • Current/Future Support for Exchange Folders and Task List Items

    Are there any plans for SES to be able to index public Exchange folders and task list items?
    Does anyone know or is aware of any workarounds for indexing public folders and task lists?
    Thanks in advance.

    Are there any plans for SES to be able to index public Exchange folders and task list items?
    Does anyone know or is aware of any workarounds for indexing public folders and task lists?
    Thanks in advance.

  • How to retrive list item form sub folder (sub folders) in sharepoint using CAML or Server Object Model?

    Hi All,
    I have multiple folders in document library.I want to retrive list item form folder.
    Following is snap
    I want to get all sub folder and list item in
    Sub folder 1.
    Any will be help appreciated..
    Thanks
    Balaji More

    Hi Balaji,
    If
    you want to query all folders and sub folders of a list or document library, you have to define extra query options. If you are working with the object model you have to set the
    ViewAttributes property of the SPQuery object as follows:
    qry.ViewAttributes = "Scope='Recursive'";
    you can use the client 0bject model to get this as well
    ClientContext clientContextObj =
    new ClientContext("http://Servername/");
    List yourDocLib = clientContextObj.Web.Lists.GetByTitle("Shared Documents");
    CamlQuery camlQueryObj = new CamlQuery();
    camlQueryObj.ViewXml =
    @"<View Scope='Recursive' />";
    ClientOM.ListItemCollection listItems =
    yourDocLib.GetItems(camlQuery);
    clientContextObj.Load(listItems);
    clientContextObj.ExecuteQuery();
    foreach (var item in listItems)
    Krishana Kumar http://www.mosstechnet-kk.com

Maybe you are looking for