Cant add items to group

I create a new group and an arrow appears next to it (it doesn't have an arrow next to the other groups) and I try and drag events to the group and the events don't get added. I have 7 groups already that are working fine, it is just when I add a new group that the arrow pops up (like it is expandable) and I can't add items to this new group.

Greetings,
Click on the group in question and go to File > New Calendar > On My Mac. Does a new calendar appear?
I create a new group and an arrow appears next to it (it doesn't have an arrow next to the other groups) and I try and drag events to the group and the events don't get added.
Groups do not hold events. They hold calendars. You don't drag events to Groups, you drag Events to calendars.
See if that works.

Similar Messages

  • Cant add item ih the list

    Problem i have is with method called wordMenu() which is inside method called show(). Problem is that last line of method wordMenu() should add newly created words to the mDatabase.
    If i use method listWords() (SWITCH 3) i see newly added words on the bottom of the list which is intended. But they never appear if i run the game test again (SWITCH 1). Those newly created words by user should
    be added to the mDatabase and program should be able to use them to create new random word list for test.
    I dont understand why newly created words appear if i just list words by method from switch 3 but they do not appear in new test-switch1, can someone help me understand and fix this problem with my program.
    import java.util.Scanner;
    * Class which interacts with user using scanner.
    * And runs the main method of the program.
    public class Menu
        public Scanner mScanner;
        private static  TestGenerator mGenerator = new TestGenerator();
        private WordDatabase mDatabase;
        * Constructor for objects of class Menu
       public Menu()
            mScanner = new Scanner(System.in);
            mDatabase = new WordDatabase();
         * Main method that runs our program.
         * From welcome menu trough test or adding new words.
         * Up to the goodbye screen.
       public void show()
            login();
            while(true)
                welcomeMenu();
                if(!mScanner.hasNextInt())
                    System.out.println(mScanner.nextLine() + " är inte giltigt input");
                    continue;
                int option = mScanner.nextInt();
                 switch(option)
                    case 1:
                        //clearScreen();
                        Test test = mGenerator.generateNewTest();
                        test.start();                  
                    break;
                    case 2:
                        clearScreen();
                        wordMenu();
                        clearScreen();
                    break;
                    case 3:
                        clearScreen();
                        listWords();
                    break;
                    case 4:
                         clearScreen();
                         if(goodbyeMenu()){
                              return;
                         else{
                    break;
                    default:
                        System.out.println("--> Förstår inte <--");
                    break;
        * Method that list all words currently in database.
       private void listWords()
            for(int i = 0; i < mDatabase.size(); i++)
                System.out.println(mDatabase.get(i));
            System.out.println();
         * Method that prints out welcome text.
         * Helps with keeping main method easier to understand.
       private void welcomeMenu()
            System.out.println("Hej och välkommen till Igor's glostränare!");
            System.out.println();
            System.out.println("1.Kör glostest");
            System.out.println("2.Registera ord");
            System.out.println("3.Skriv ut alla glösor.");
            System.out.println("4.Avsluta testet.");
            System.out.println();
            System.out.print("Vad vill du göra ? --> ");
        * Method that takes users name.
        * Helps with keeping main method easier to understand.
       private void login()
           System.out.print("Ditt namn: ");
           mScanner.nextLine();  
           System.out.print("\f");
         * Method that allows user to add new words into database.
       private void wordMenu()
               System.out.println();
               System.out.println("Lägga till ord menyn");
               System.out.println();
               System.out.print("Svenska:-->");
               String Svenska = mScanner.next();
               System.out.println();
               System.out.print("Engelska:-->");
               String Engelska = mScanner.next();
               System.out.println();
               System.out.print("-->");
               System.out.println(Svenska + ":" + Engelska);
               System.out.println();
               Word word = new Word(Svenska, Engelska);
               mDatabase.add(word);    
         * Method that creates goodbye screen.
       private boolean goodbyeMenu()
            System.out.println("Är du säker att du ska avsluta program");
            System.out.println();
            System.out.println(" 1 - avsluta");
            System.out.println(" 2 - gå tillbaka");
            System.out.print("-->");
            int input = mScanner.nextInt();
            if(input == 1){
                return true;
            else{
                return false;
         * Method that clears the screen allowing better overwiev.
       private void clearScreen()
          System.out.print('\u000C');
    }Another class which holds method start()
    import java.util.ArrayList;
    import java.util.Iterator;
    * Class that runs test and counting results.
    public class Test
        private ArrayList<Word> mTestWords;
        private int mScore;
         * Constructor for objects of class Test.
         * @param is ArrayList wordlist from class Word.
        public Test(ArrayList<Word> wordList)
           mTestWords = wordList;
           mScore=0;
         * Method which count and print out test results.
        public void start()
            System.out.println("Nu startar testet");
            Iterator<Word> it = mTestWords.iterator();
            while(it.hasNext())
                if(it.next().answer())
                    mScore++;
            System.out.println("Testet avlklarat; " + mScore + "/" + mTestWords.size());
    } Third class that generates test
    mport java.util.ArrayList;
    * This class generates tests using class RandomN and WordDatabase.
    public class TestGenerator
        private RandomN mRandom;  
        private WordDatabase mDatabase;
         * Constructor for objects of class TestGenerator.
        public TestGenerator()
            mDatabase = new WordDatabase();
            mRandom = new RandomN(mDatabase.size());
         * Method that add new words to our wordlist.
         * @param new (word).
        public void addWord(Word word)
            mDatabase.add(word);
            mRandom = new RandomN(mDatabase.size());
         * Method which randomly pick values from our database.
         * @return  Test randomly picked values from database list.
        public Test generateNewTest()
            ArrayList<Word> wordlist = new ArrayList<Word>();
            for(int i = 0; i < 10; i++)    
                int max = mDatabase.size();
                Word word = mDatabase.get(mRandom.getRandomValue(max));
                while(wordlist.contains(word))
                    word = mDatabase.get(mRandom.getRandomValue(max));
                wordlist.add(word);    
            return new Test(wordlist);
    }Edited by: 901605 on 2011-dec-10 12:32
    Edited by: 901605 on 2011-dec-10 12:35
    Edited by: 901605 on 2011-dec-10 12:37

    Because you're using 2 word databases, when you apparently want only one.
    The mDatabase in your Menu class is used for adding the words and displaying, but in your TestGenerator class you create another mDatabase to be used for creating the random tests.

  • Cant add Windows accounts to staff or admin group

    cant add Windows accounts to staff or admin group
    I have one Mac pro workstation on a all windows network, its added to the domain. i can give network users administrative permissions on the pc by selecting allow user to administer this computer in the accounts in system preferences but they dont have file permissions unless i add them explicitly on the file or folder. i'm new with macs and not sure on what to do.

    > local users (Not domain Users) to this Group and then nest this Group
    > into the Local Admin Group Built-in into Windows 8
    You cannot nest local groups.
    Greetings/Grüße,
    Martin
    Mal ein
    gutes Buch über GPOs lesen?
    Good or bad GPOs? - my blog…
    And if IT bothers me -
    coke bottle design refreshment (-:

  • DataSocket+OPC+Siemens=can't add item.

    I'm working on different OPC servers and
    I'm able to connect to most of them without a problem (using DataSockets
    as well as OPC Data Access Automation
    Interface v.2.02). So, my DataSocket example works fine for National Instruments
    OPC servers,and ICONICS servers,and others but only for Siemen's
    "Softing OPC Sample Server" and "OPC.SimanticNET" I get a "can't create item
    error" or "cant
    add group error" when I OPEN connection.
    The connection works fine if I use other
    methods then DataSockets or If I use
    other server.
    Does anybody know why is that?

    Adam,
    You didn't mention what version of DataSocket you are using. Upgrading to
    DataSocket version 3.0 should fix this problem. (If you are a ComponentWorks
    user, check out www.ni.com/mstudio for upgrade information or to download
    eval software)
    Denise
    "Adam Blazowski" wrote:
    >>I'm working on different OPC servers and>I'm able to connect to most of
    them without a problem (using DataSockets>as well as OPC Data Access Automation>Interface
    v.2.02). So, my DataSocket example works fine for National Instruments>OPC
    servers,and ICONICS servers,and others but only for Siemen's>"Softing OPC
    Sample Server" and "OPC.SimanticNET" I get a "can't create item>error" or
    "cant>add group error" when I OPEN connection.>>The connection works f
    ine
    if I use other>methods then DataSockets or If I use>other server.>>Does anybody
    know why is that?>

  • How do I read txt file and add items to dropdownlist or checkbox

    I want to add items to a dropdown or check box by reading from a text file(and select one of them). (I donot use any table or database). The list of items is sometimes upto 20MB and hence cannot populate using session bean.I want items to be added to either checkbox or listbox during a button action. I have done this for textarea but unable so far to acheive for checkbox or listbox. I use following code which does not work:
    public String button3_action() {       
    try{           
    FileReader fr = new FileReader "F:/CreatorProjects/checkboxtst.prs");
    BufferedReader br = new BufferedReader(fr);
    String s;
    while((s=br.readLine())!=null) {
    dropdown1.setValue(s);
    br.close();
    fr.close();
    }catch(Exception e) {
    e.printStackTrace();
    return null;
    I know I cant just transplant textarea code for dropdownlist or checkbox.
    Any help is greatly appreciated.
    Thanks.
    Dr.AM.Mohan Rao

    I am able to read from txt file to a listbox if i write in sessionsbean1:
    try{
    FileReader fr = new FileReader("F:/CreatorProjects/checkboxtst.prs");
    BufferedReader br = new BufferedReader(fr);
    String s1="";
    String s="";
    while((s=br.readLine())!=null) {
    s1 = s1+s;
    s1= s1+"\n";
    disOptions = new com.sun.rave.web.ui.model.Option[] {              
    new Option(s1,s1)};
    diseases = new String[] {};
    fr.close();
    br.close();
    catch(Exception e) {
    e.printStackTrace();
    But I get all data in one line!! if I click submit button text area gets all. How to display items in each line????Please help...
    Dr.AM. Mohan Rao

  • Add Item to a delivery without reference to a sales order

    Hello everybody,
    I'm trying to add an item to an existing delivery via VL02n without reference to a sales order but every time the following error message appears: "You cannot add this item to the delivery".
    What settings do i need in order to that? (material type, delivery type, item category group,..etc..)
    Could anyone help me?
    Thank for your attention.
    Regards,
    A.

    Hi!
    Its not feasible to add a new line item without reference, becuase in one of the user exits such a code would have been written to prevent adding line item without refernec.
    This is done to ensure that a standard availabilty check, pricing and infostructure updates are done. Otherwise, after billing the report of Profitabilty will not come correct and will lead to more problems.
    So my suggestion would be not to add the line item withour referencing to the sales order.
    SAP provides the way of unreferincing through a seperate delivery type called LO. So if you want to create a delivery without refernce, you can use delivery type LO or some Z version of it.
    Hope this helps,
    Abhishek

  • Error message when trying to add item in change BOM goup

    Hi I went to transaction cs05,and trying to add item to specific material with BOM group,an error message popped up and saying assign the item to an alternative,what does it mean? How to solve?

    Hi,
    A finished material can have multiple alternative BOMS which can be stored in a common BOM group number. CS05 is used to change these multiple boms.
    When you add a new item in CS05, system will ask - to which alternative bom the new item should be assigned and that's how you are getting this message. For example, if in a bom group you have 3 differnet alternatvie boms for a FG material, when you add new item in CS05, you will see 3 checkbox at the right hand side of the screen. If you want to assign new item to all the three alternative BOMs , than select all the three check box and save.
    Regards,
    Ravi Thakkar.

  • How to use item category group for pricing?

    Hi,
    how can I use the item category group to carry out pricing?
    I want to determine a condition type for item category group DIEN only and no other.
    Thanks for help!
    Florian

    Hi Florian Preuss,
          You should follow the next steps:
    1. Check if the item category group field exist in the pricing catalog to choose it as a field in a table condition, if it doesn't exist (I don't believe that), you should contact to a technical person (ABAP) to add it to the structure KOMPAZ.
    2. Create a condition table with this field (item category group) and others that you need to determine the condition.
    3. Create an access sequence with this condition table.
    4. Create a condition type and assign it the access sequence.
    5. Add the condition to pricing procedure.
    6.. Enjoy it.
    Thanks in advance,
    Mariano.

  • Cant add folder to library

    I just reset my computer and re installed itunes 11 and I cant add folder to library but can add files but have 5k songs and that will be a PAIN, and I looked on google and apple for 3hrs now and still cant find a solution. I been having a ipod and itunes for about 6 years now and never had a problem like this.

    The main differences between iTunes 11 and earlier versions are the loss of coverflow and ability to have multiple windows open. Other familiar features have been hidden but can be revealed...
    You can restore much of the look & feel of iTunes 10.7 with these shortcuts:
    ALT to temporarily display the menu bar
    CTRL+B to show or hide the menu bar
    CTRL+S to show or hide the sidebar
    CTRL+/ to show or hide the status bar (won't hide for me on Win XP)
    Click the magnifying glass top right and untick Search Entire Library to restore the old search behaviour
    Use View > Hide <Media Kind> in the cloud or Edit > Preferences > Store and untick Show iTunes in the cloud purchases to hide the cloud items. The second method eliminates the cloud status column (and may let iTunes start up more quickly)
    If you don't like having different coloured background & text in the Album (Grid) view use Edit > Preferences > General and untick Use custom colours for open albums, movies, etc.
    Use Edit > Preferences > Show list views for all media to do just that
    From iTunes 11.0.3 you can enable artwork in the Songs view from View > Show View Options (CTRL+J) making it more like the old Album List view
    View > Show View Options (CTRL+J) also contains options to change the sorting of grid based views
    tt2

  • Ecma script add item with people picker field

    hello,
    I need to add item to a list which is having people picker ,i need to insert the value but it is not working for that field alone.
    is there any different procedure is there.
    thanks

    Hi Krishnakumar_DeV,
    Do you mean to add list item with people and group field value, multiple users and groups?
    Use the follow sample code:
    var users = new Array();
    users.push(SP.FieldUserValue.fromUser(“user1alias”));
    users.push(SP.FieldUserValue.fromUser(“user2alias”));
    item.set_item(columnname, users);
    item.update();
    How to User ECMA CSOM to Set a field of Type SPFieldUserValue:
    http://sharepoint.stackexchange.com/questions/47872/how-to-use-ecma-csom-to-set-a-field-of-type-spfielduservalue
    Thanks,
    Qiao Wei
    TechNet Community Support

  • Pinned tabs no longer there & cant add new ones

    When I open Firefox, the areas where the nine pinned tabs used to be are blanked out.
    I can no longer click a site that was in them and I cant add new ones.
    I have done an uninstall and reinstall of Firefox, this didn't work.

    You can check for problems with the sessionstore.js and sessionstore.bak files in the Firefox profile folder that store session data.
    Delete the sessionstore.js file and possible sessionstore-##.js files with a number and sessionstore.bak in the Firefox profile folder.
    *Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Multiple_profile_files_created
    Deleting sessionstore.js will cause App Tabs and Tab Groups and open and closed (undo) tabs to get lost and you will have to recreate them (make a note or bookmark them if possible).

  • Item Region: 'Group/Sort by' issues

    I've got some serious issues organizing and sorting items on a page.
    If I select 'Group by Item Type' and 'display the Group by banner', items are grouped by Simple File, Simple Text, Simple URL.
    I am unable to change this sorting order and unable to change which itemstype should be displayed in the 'group by' banner ?!?
    I have hidden these 'Simple' itemtypes, but they are still displayed. I changed order of Item Types in the Pagegroup configuration but the sorting order does not change.
    Is this documented behaviour or a bug?
    Furthermore, I cannot sort Items by date from most recent to olders. ('Group by Date' orders from oldest to most recent. 'Sort by' has no option for 'Date') How can I workaround and sort items from most recent to oldest???
    NOTE: Pages are based on templates. Portal version 9.0.4.99

    hi paul,
    one workaround to sort items by date is to use an auto-query search portlet to render the items on your page. to do that you have to add a custom search portlet and configure it to be an auto-query portlet. in the results display tab you can specify the order by option. for the end-user the auto-query portlet looks exactly the same as if he was viewing an item region.
    regards,
    christian

  • Error while add item to cart

    hi,
    i get the below error while i add items to cart
    CAUGHT AT:
    CONTAINER:atg.commerce.CommerceException; SOURCE:CONTAINER:atg.service.pipeline.RunProcessException: An exception was thrown from the context of the l
    ink named [updateOrderObject].; SOURCE:CONTAINER:atg.repository.RepositoryException; SOURCE:com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintVi
    olationException: Duplicate entry 'o1160002-1' for key 'PRIMARY'
    at atg.commerce.order.OrderManager.updateOrder(OrderManager.java:2780)
    please help me out.
    sanjeev
    Edited by: sanjeevram on Feb 7, 2013 4:48 AM

    hi,
    Thanks for your quick response. i have created the new payment group(Cash on delivery) and removed creditCard from defaultPaymentGroupType, after that i started getting the above error. So i removed new payment group and kept creditCard as defaultPaymentGroupType.
    now i get the below error in my checkout page
    javax.servlet.ServletException: atg.commerce.order.PaymentGroupNotFoundException: PaymentGroup with id pg1990001 is not in container.
    and below error in my server
    15:06:21,296 ERROR [OrderRepository] SQL Statement Failed: [++SQLInsert++]
    INSERT INTO dcspp_order_pg(order_id,sequence_num,payment_groups)
    VALUES(?,?,?)
    -- Parameters --
    p[1] = {pd} o1160002 (java.lang.String)
    p[2] = {pd} 0 (java.lang.Integer)
    p[3] = {pd: paymentGroups} pg1990001 (atg.adapter.gsa.SingleValueGSAId)
    [--SQLInsert--]
    15:06:21,296 ERROR [OrderRepository] Failed to update item: order:o1160002 exception=
    CAUGHT AT:
    CONTAINER:atg.repository.RepositoryException; SOURCE:com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry 'o116
    0002-0' for key 'PRIMARY'
    at atg.adapter.gsa.GSAItemDescriptor.updateItem(GSAItemDescriptor.java:7090)
    at atg.adapter.gsa.ItemTransactionState.updateItemState(ItemTransactionState.java:961)

  • Disable the function "add item" in Datasheet View

    Hello,
    I am working with ListViewWebPart recently, il use a SPView of type "Datasheet". So as you know, there is a line in bottom with a '*' left, we can click et edit in that line to add new item, then there will be a new line below with a "*" to allow us
    to add new item always.
    Now the problem is: could we disable "that line", i dont want user to add new line (item), but they can edit the lines(items) existed. Anyone know how to do it. 
    Thank you very much for your read and your reply.
    Ning

    Hi,
    Permission management would be one choice to restrict users to add new item.
    You just need to remove the 'Add items' permission from the user's current permission group or you can create a new permission for that people.
    You can read the following document to implement the requirement.
    http://office.microsoft.com/en-us/windows-sharepoint-services-help/manage-permission-levels-HA010100143.aspx#BMchange
    Microsoft Online Community Support

  • Cant add Spare disk to aggregate

    hi guys.
    one of my disks on my IBM N3600 (netapp based) filer has failed. i have replaced it, zeroed it but now i cant add it to the aggregate for some reason. now i have 3 spares and i want to add at least one of the to the aggregate (as i know, you need 2
    spares). 
    i tried the "disk assign (disk_name)" command but nothing happen. 
    i also tried the "aggr add aggr0 -d 0c.26.7" command but i get this error:
    aggr add: Starting a new raid_dp RAID group;
    The number of disks specified must be at least three
    times the number of plexes in the target aggregate 'aggr0'.
    any thoughts?

    Hi  you need to ask this question on a forum dedicated to IBM storage, as this isn't related to Windows File services and storage.
    regards
    Mark

Maybe you are looking for

  • SSRS Report in PDF format opening very slowly in SharePoint

    HI All, I have a SSRS report which is being hosted in SharePoint. Currently I am opening the report in PDF format in SharePoint but it is taking a lot of time to render. It would be very helpful if any one helps me to resolve this issue. Thanks Sudip

  • Recording/Streaming h264 in AMS 5.01 tries to save flv

    I'm trying to record a live stream to the livepkgr application using the following code: var cam:Camera; var mic:Microphone; var video:Video; var nc:NetConnection; var ns:NetStream; var h264Settings:H264VideoStreamSettings; cam = Camera.getCamera();

  • Unable to access Weblogic console

    Hi, I am using Jdev 11.1.1.3.0. I have started the Integration Server and it is successful. It is bout to port 7101 I ahve tried to access the weblogic console or EM at http://127.0.0.1/em http://127.0.0.1/console but I get a 404 page not found error

  • How often "New and Noteworthy" category is updated in App Store

    Please let me know how often "New and Noteworthy" category is updated in App Store in different countries? It seems that it is updated every Friday in USA App Store. What about other countries?

  • Mountain Lion the buggiest of all the MacOSes so far?

    It seems Mountain Lion is causing quite a lot of grief. I've had my Mail app crashing on opening and in checking here, i'm not the only one having the problem. Yesterday iPhoto now is stuck in an infinite loop whilst opening (no crash logs generated,