How to have both Single and Mutilple Selection in a table?

Hi ,
I have a page with an advanced, there is a multiple selection for the table for deleting row. Now I want to have a single selection column for other purpose. But it does not seem that we can have both in a table.
If I implement SingleSelection myself by using OAMessageRadioButton, from dev guide, I need to programmatically assign radio btton all the same
name by calling setName() for each radio button and also assign an identifying value for each bean. I can radio for radio button, but how can I assign value for each radio button bean when they are in a table? Will it possible to use View Attribute of radio button bean property?
thanks
Lei

Lei, its possible to have both in ur table! You can add a single selection child to your table. Then u can add messagecheckbox as last column of table, which can be attached to a transient VO attribute.
--Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • Toggling between single and multiple selection in a table

    I am working on ADF faces. I need to switch between single and multiple selection in <af:table based on a button I select.
    I cannot use switcher or rendered property inside <af:table. Only the first one is rendering the second one is not rendering based on the switch
    <f:facet name="selection">
    <af:tableSelectMany autoSubmit="true"
    rendered="#{treeBean.multipleRows}"/>
    </f:facet>
    <f:facet name="selection">
    <af:tableSelectOne autoSubmit="true"
    rendered="#{treeBean.singleRows}"/>
    </f:facet>
    When I use inside the switcher, it doesn't like the parent.
    Any ideas would be greatly appreciated.
    Thanks,
    Vijay.

    I have probably misunderstood what your issue is. I do not know what your version of ADF faces is. Here is some sample code working with my version. Please check if your jdev has "rowSelection" attribute. If it has, please try my sampe code
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="1.2"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:afh="http://xmlns.oracle.com/adf/faces/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces">
    <jsp:directive.page contentType="text/html;charset=utf-8"/>
    <f:view>
    <af:document title="tableSelectMany Demo">
    <af:form>
    <af:panelGroup layout="vertical">
    <af:messages/>
    <af:selectOneChoice value="#{sessionScope.tableSelection}"
    autoSubmit="true"
    id="selType"
    label="Selection Type">
    <af:selectItem label="Single" value="#{null}"/>
    <af:selectItem label="Multiple" value="#{true}"/>
    </af:selectOneChoice>
    <af:table summary="Periodic table"
    binding="#{tableActions.table}"
    partialTriggers="selType"
    rowSelection="#{sessionScope.tableSelection ? 'multiple' : 'single'}"
    value="#{periodicTable.tableData}" var="row" rows="10">
    <af:column>
    <f:facet name="header">
    <af:outputText value="Name"/>
    </f:facet>
    <af:outputText value="#{row.name}"/>
    </af:column>
    <af:column>
    <f:facet name="header">
    <af:outputText value="Symbol"/>
    </f:facet>
    <af:outputText value="#{row.symbol}"/>
    </af:column>
    <af:column>
    <f:facet name="header">
    <af:outputText value="Action Column"/>
    </f:facet>
    <af:commandButton immediate="true" text="Action"
    action="#{row.action}"/>
    </af:column>
    </af:table>
    </af:panelGroup>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>

  • How to have both rollOver and dragOver trigger a function?

    Hello I have this AS:
    this.thumbHolder.onRollOver = function() {
    this._alpha = 100;
    this.play();
    The thing I can't work out is how do I add onDragOver as well
    as onRollOver?
    Thanks for your time!

  • How to print  both normal and bold data in a single line

    Hi ,
    I have requirement wherin the data need to be displayed in a single line.
    FAX:              Z8525_text.
    where FAX needs to be in bold and Z8525_text is a standard text and it shoould not be bold , both of this needs to be displayed in
    a single line.
    Can you let me know how to print  both normal and bold data in a single line one of which is coming fro standard text.
    Regards,
    Senthil

    Hi Senthil,
    If you are using smartforms, have a character format created for BOLD and apply it to the text you want to highlight. The remaining text of the line could be applied with a Character format which is not highlighted.
    Try and revert in case you need further assistance

  • I am trying to export a video from Premiere Pro.  I have both audio and video checked and the sequence is active but only the audio exports.  There is no video at all.  Can anyone tell me how to get the video to export.  It was working fine until today.

    Premiere Pro CC has been working fine until today.  I have completed my sequence and it is active.  I have both audio and video checked when I am exporting using H.264 with Match Source Hi bitrate.  I am choosing entire sequence.  The audio exports but the video and title does not.  Can anyone tell me how to troubleshoot this so I can complete this project?  Please!

    Greetings,
    I've never seen this issue, and I handle many iPads, of all versions. WiFi issues are generally local to the WiFi router - they are not all of the same quality, range, immunity to interference, etc. You have distance, building construction, and the biggie - interference.
    At home, I use Apple routers, and have no issues with any of my WiFi enabled devices, computers, mobile devices, etc - even the lowly PeeCees. I have locations where I have Juniper Networks, as well as Aruba, and a few Netgears - all of them work as they should.
    The cheaper routers, Linksys, D-Link, Seimens home units, and many other no name devices have caused issues of various kinds, and even connectivity.
    I have no idea what Starbucks uses, but I always have a good connection, and I go there nearly every morning and get some work done, as well as play.
    You could try changing channels, 2.4 to 5 Gigs, changing locations of the router. I have had to do all of these at one time or another over the many years that I have been a Network Engineer.
    Good Luck - Cheers,
    M.

  • How to handle both single click and double click from mouse

    hey,
    I looked in past threads and didn't get a proper answer for capturing both single and double click from the mouse.
    in most applications the single click action does not interfere with the double click action, for example in a text editor, single click sets the cursor in between the text, double click marks a word, triple click marks a sentence, they do not bother each other, they all can happen first the single then the double and then the triple, but what if i have a very distinct action for each of the actions, the e.getClickCount() returns every time the number of clicks and if i use
    if(e.getClickCount()==1)
        doSingleClick();
    if(e.getClickCount()==2)
        doDoubleClick();it will always do first the single click and then the double click, which works fine with the example i gave, but not with what i want to do, so i was thinking to over come this that i will use another thread to run my tasks if dt has past since the last click and by the last click counts to perform the correct action and go to sleep until the next mouse click notify it, what do you think?
    run this to get what i mean...
    package blah;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class MouseClickTest {
         static long previousTime = System.currentTimeMillis();
         public static void main(String[] args) {
              JPanel panel = new JPanel();
              JButton component = new JButton("Hit me, please");
              component.addMouseListener(new MouseAdapter(){
                   public void mouseClicked(MouseEvent me){
                        if(me.getClickCount()==1)
                             System.out.println("Now I will do single click action");
                        if(me.getClickCount()==2)
                             System.out.println("Now I will do DOUBLE click action");
    //                    System.out.println("Click count: " + me.getClickCount());
              panel.add(component);
              Launcher.launch(panel);
    package blah;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Launcher {
         public static JFrame launch (Container contents, String title, Color backgroundColor) {
              JFrame frame = new JFrame (title);
              if (backgroundColor != null) {
                   frame.setBackground (backgroundColor);
                   contents.setBackground (backgroundColor);
              } else {
                   frame.setBackground (contents.getBackground());
              frame.getContentPane().add (contents, BorderLayout.CENTER);
              frame.pack();
              frame.addWindowListener (new WindowAdapter() {
                   public void windowClosing (WindowEvent e) {
                        System.exit (0);
              frame.setVisible (true);
              return frame;
         public static JFrame launch (Container contents, String title)      {
              return launch (contents, title, null);
         public static JFrame launch (Container contents, Color backgroundColor) {
              return launch (contents, contents.getClass().getName(), backgroundColor);
         public static JFrame launch (Container contents) {
              return launch (contents, contents.getClass().getName());
    }

    Read my comments and solution in this posting; [http://forums.sun.com/thread.jspa?forumID=57&threadID=705244]
    and then choose a better design for your application.

  • How to have more months and years appear for selection in the archives for blog posts?

    Hello,
    How to have more months and years appear for selection in the archives for blog posts?  It just shows past 3 months in the year 2014, but we have many blog posts in years 2013, 2012 and 2011 and further back.  I am using the OOB SharePoint blog
    feature.
    Paul

    Hi,
    Thanks for the reply; it doesn't add anything as RSA6 was one of the options I listed and this was my fall back option if there was no other special treatment for the COPA datasources.
    I have found out why this, and other fields, are not available in KEB0.  The program uses a Function called KERA_COPA_METADATA_INTERFACE within which there is a section that selects the COPA fields:
    ***** 1. RULES (choice/class)
    * set rules for fixed fields
      PERFORM COPA_SET_RULES_FIXED_FIELDS USING I_ACCTCOST
                                          CHANGING E_T_RULES[].
    When you look at this code section there is a hard coded list of fields to exclude:
      MRULE 'MANDT     ' NEVER FORGET_IT NEVER FORGET_IT.
      MRULE 'PAOBJNR   ' NEVER FORGET_IT NEVER FORGET_IT.
      MRULE 'PASUBNR   ' NEVER FORGET_IT NEVER FORGET_IT.
      MRULE 'PAPAOBJNR ' NEVER FORGET_IT NEVER FORGET_IT.
      MRULE 'PAPASUBNR ' NEVER FORGET_IT NEVER FORGET_IT.
      MRULE 'HRKFT     ' NEVER FORGET_IT NEVER FORGET_IT.
      MRULE 'HZDAT     ' NEVER FORGET_IT NEVER FORGET_IT.
      MRULE 'USNAM     ' NEVER FORGET_IT NEVER FORGET_IT.
      MRULE 'RKESTATU  ' NEVER FORGET_IT NEVER FORGET_IT.
      MRULE 'TIMESTMP  ' NEVER FORGET_IT NEVER FORGET_IT.
      MRULE 'PERDE     ' NEVER FORGET_IT NEVER FORGET_IT.
      MRULE 'PERIO     ' OBLIGATORY CHAR_CE3 OBLIGATORY CHAR_CE3.
      MRULE 'COPA_AWTYP' NEVER FORGET_IT NEVER FORGET_IT.
      MRULE 'COPA_AWORG' NEVER FORGET_IT NEVER FORGET_IT.
    As this is a standard delivered SAP function I do not recommend that you change this code as you will invalid your SAP support and upgrade paths.
    Thanks
    Neil

  • Can I have both Lion and Snow Leopard on One Hard Drive?

    My problem is I need to run a PowerPC game on Lion which Lion no longer supports. So i thought i could download Snow Leopard back to my Mac and partiition my hard drive in the process as that is the only way i know of to have both Lion and Snow Leopard. I went through the Boot Camp Asistant process and it seems it will only partition Windows 7 to my Mac when i need Snow Leopard. If anyone has any idea how to help me have both Lion and Snow Leopard at the same time on just one hard drive or figure out how to run the PowerPC programs on my Mac (if there is a way around it). The help will be well appreciated!

    How To Run Snow Leopard On A New Mac
    This does not apply to new Mac Minis or MacBook Airs. When newer models are introduced that also require Lion for hardware support, the techniques described below will no longer work with the possible exception of using Parallels 7.
    What has to be done:
    Create a new partition on the hard drive.
    Get a clone of a 10.6.8 Snow Leopard system. Put the cloned Snow Leopard system onto the new partition.
    Step One: Create a new partition on the hard drive
    To resize the drive and create a new partition do the following:
    1.    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
           After the main menu appears select Disk Utility and click on the Continue button. Select the hard drive's main entry then click on the Partition tab in the DU main window.
    2.   You should see the graphical sizing window showing the existing partitions. A portion may appear as a blue rectangle representing the used space on a partition.
    3.    In the lower right corner of the sizing rectangle for each partition is a resizing gadget. Select it with the mouse and move the bottom of the rectangle upwards until you have reduced the existing partition enough to create the desired new volume's size. The space below the resized partition will appear gray. Click on the Apply button and wait until the process has completed.  (Note: You can only make a partition smaller in order to create new free space.)
    4.   Click on the [+] button below the sizing window to add a new partition in the gray space you freed up. Give the new volume a name, if you wish, then click on the Apply button. Wait until the process has completed.
    You should now have a new volume on the drive.
    It would be wise to have a backup of your current system as resizing is not necessarily free of risk for data loss.  Your drive must have sufficient contiguous free space for this process to work.
    Step Two: Obtain a clone of a Snow Leopard system:
    You will need access to a Mac already running Snow Leopard. You will need a 16 GB USB flash drive or an external hard drive to which you can clone the Snow Leopard system from the Mac that has Snow Leopard installed. Alternatives are:
    Option One:
    Install a new Snow Leopard system onto a USB flash drive. Boot the Mac used for installing with the USB flash drive. Update the flash drive system to 10.6.8 using the Mac OS X 10.6.8 Update Combo v1.1 to update Snow Leopard. Verify that you can boot the Mac with the USB flash drive.
    Take the USB flash drive to your new Mac and try booting from it. If it works then clone the system from the flash drive to the newly made partition:
              Clone using Restore Option of Disk Utility
    Open Disk Utility from the Utilities folder.
    Select the destination volume from the left side list.
    Click on the Restore tab in the DU main window.
    Check the box labeled Erase destination.
    Select the destination volume from the left side list and drag it to the Destination entry field.
    Select the source volume from the left side list and drag it to the Source entry field.
    Double-check you got it right, then click on the Restore button.
              Destination means the new partition on the internal drive. Source means the USB flash drive.
    Option Two:
    If you have a large enough external drive you can erase and use, then it would be easier to just clone the entire Snow Leopard system from the source Mac computer to the external drive.
              Clone using Restore Option of Disk Utility
    Open Disk Utility from the Utilities folder.
    Select the destination volume from the left side list.
    Click on the Restore tab in the DU main window.
    Check the box labeled Erase destination.
    Select the destination volume from the left side list and drag it to the Destination entry field.
    Select the source volume from the left side list and drag it to the Source entry field.
    Double-check you got it right, then click on the Restore button.
              Destination means the external drive. Source means the Snow Leopard Mac's internal drive.
    After cloning verify that it will boot the source Mac. If so then take the external drive to your new Mac boot with it. If all is well then restore the clone to the new partition on your new Mac:
              Restore the clone using Disk Utility
    Open Disk Utility from the Utilities folder.
    Select the destination volume from the left side list.
    Click on the Restore tab in the DU main window.
    Check the box labeled Erase destination.
    Select the destination volume from the left side list and drag it to the Destination entry field.
    Select the source volume from the left side list and drag it to the Source entry field.
    Double-check you got it right, then click on the Restore button.
              Destination means the new partition on the internal drive. Source means the external drive.
    If the above seems too daunting then you might consider running Snow Leopard inside an emulator such as Parallels 7. You are permitted to install a single copy of Snow Leopard inside a virtual machine. You will need to first purchase a copy of Parallels 7 and install it on your new Mac. Create a new virtual machine configured for Mac OS X. You may then install Snow Leopard in the virtual machine then download Mac OS X 10.6.8 Update Combo v1.1 and update to 10.6.8. Be sure to include Rosetta in your initial Snow Leopard installation. Rosetta is not installed by default rather it's an optional install.

  • Have BOTH .m4a and .m4p versions of same purchased songs after re-import

    Hello,
    I recently had to reconstruct my iTunes library (new machine, new installation) and so I did an "Add to Library" of my library folder into an empty iTunes library. After import, I've discovered that for about 215 songs which I've purchased from the iTunes Store, I have both .m4a and .m4p versions of each of these songs. If I view the "Kind" of each song within iTunes, the .m4a shows a "Kind" of "Purchased AAC Audio File", and the .m4p version shows a "Kind" of "Protected AAC Audio File". If I show the Bitrate, each copy of each song is the same, 256 Kbps. If I view each song file in the Finder, the .m4a is about double the size of the .m4p. I have a few questions surrounding this:
    1. Why are the sizes of the song files so drastically different?
    2. Some time ago I took advantage of that DRM-free promotion, so I am suspecting that this may have had something to do with me having both protected and non-protected copies of these files. However, I am curious why both files now show in my library, whereas before, they did not -- only one copy showed. Does anyone know why both song copies are now showing?
    3. Should I keep both of these files?
    4. Is there a way to manage these files in iTunes so that only one copy shows? They both show when duplicates are hidden, because they are different, or iTunes doesn't know of the association I suppose. But of course that messes up trying to play an album -- every song plays twice.
    Thanks in advance for your answers.
    Brad

    No--nothing gets deleted when you convert. You get two copies of the song in your library. (On Edit: I haven't done this with the latest version of iTunes. I assume nothing gets deleted just like before. To check--maybe you should convert ONE song and see if you get a duplicate in a smaller version, or just a smaller version! I've always gotten duplicates!)
    I did leave out a few steps on how I do this--but if you're interested here's how I do it. Make the playlist. Then go to Edit>Select All. Then I go back to the top line: Advanced>Convert Selection to AAC. (To be able to do this you have to have your import option set to AAC 128 kps under the advanced tab in your Preferences settings. After you do the conversion make sure you set this tab back to your preferred lossless import option!)
    You will get two copies of the songs in your library. Your original playlist will contain the lossless songs, so you'll have to pull the AAC songs back out into a play list. You can find them easily by sorting your library by "Kind" and then pulling the AAC files into a playlist. You can label this iPhone--or whatever.
    After you load the playlist onto your iPhone, uncheck it so the songs are not duplicated in your library. If you ever want to delete them, you have to do this inside your library or the file will remain on your computer. (It does take a while to run the conversion--so I rarely delete things afterwards if I think I'm going to use the file again.)
    Post back if you still have other questions.

  • How to populate both key and text in drop down list in dialog prog screen

    Hi, Can anyone please advice how to display both key and text in the drop down list in dialog prog screen. I tried with below code. keys and texts are getting populated in values table but only text is appearing when click on drop down. need to display both key and text in the drop down. Thanks in advance.
    TABLES: ZRPP_MODELS, ZRPP_FFLSTRATEGY.
    TYPE-POOLS : VRM.
    DATA : field_id TYPE VRM_ID ,
           values   TYPE VRM_VALUES,
           value    LIKE LINE OF values.
    FORM fill_model_list .
      select MODEL MODEL_DESC from ZRPP_MODELS into value.
        APPEND value TO VALUES.
      endselect.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id     = 'ZRPP_MODELS-MODEL'
          values = values.
    ENDFORM.

    You need to concatenate KEY & VALUES
      wa_values-key = '1'.
      wa_values-text = '1 - One'.
      append wa_values to i_values.
      wa_values-key = '2'.
      wa_values-text = '2 - Two'.
      append wa_values to i_values.
      wa_values-key = '3'.
      wa_values-text = '3 - Three'.
      append wa_values to i_values.
      call function 'VRM_SET_VALUES'
        exporting
          id              = 'LIST_BOX'
          values          = i_values
        exceptions
          id_illegal_name = 1
          others          = 2.

  • Why is eveything inverted originally? I have to go and "invert selection" to get it to animate correctly.

    Why is eveything inverted originally? I have to go and "invert selection" to get it to animate correctly.

    Please tell us how to do it.
    On Wed, Feb 25, 2015 at 4:38 PM jordanl22176104 <[email protected]>

  • I'm an American living on a timed (though long-term) assignment in Ireland. I have both American and Irish bank accounts and addresses. I have two Qs. 1. Can I use the US Adobe site when in Ireland? Or will my physical location prevent me from doing so? 2

    I'm an American living on a timed (though long-term) assignment in Ireland. I have both American and Irish bank accounts and addresses. I have two Qs. 1. Can I use the US Adobe site when in Ireland? Or will my physical location prevent me from doing so? 2. I am working for a not-for-profit organization. Is there a special pricing plan for non-profits, similar to the plans for students, small business, etc? Thanks for whatever help you can give me. (P.S. As a potential customer and past user of Adobe products for 15  years, I find it INCREDIBLY FRUSTRATING that I cannot speak with any Adobe representative, but am continually re-routed instead to a public forum to get what I hope will be accurate information. Not good, Adobe. Your products are amazing. Your customer service leaves a lot to be desired. I don't mean that with disrespect, but as honest feedback.)

    Hi bookchic
    Thanks for your feedback.
    Non-profit pricing is available to eligible institutions via the VIP program which is sold by resellers - see Eligibility guide
    For details of resellers please check here: Adobe Platinum Partners – Value Incentive Plan
    If you wish to purchase an individual plan via Adobe.com the country of your Adobe ID will determine which site you order from.
    Kind regards
    Bev

  • HT204414 How to import both iPhoto and Aperture library to iCloud Photo Library (Photos app)

    Hi all,
    Based on the article here (Designate a System Photo Library in Photos - Apple Support) has anyone tried to bring both an iPhoto and Aperture library into iCloud Photo Library so that both libraries are available as one in iCloud and form the one Photos app library rather than being seen as separate libraries. I don't want the two separated as I have 200GB's of space in iCloud which is plenty to hold the two's collective space of about 40GB's.
    It seems as though the procedure is pretty simple.
    First of all set one of your libraries as the System Photo Library, this will happen naturally with setting up Photos app for the first time. I chose iPhoto as the original library.
    Let this library upload all it's photo's to iCloud over a few minutes, hours, days etc.
    When finished, enter your other library by closing Photos app and reopening while holding down the Option key (usually Alt). In this case I now opened the Aperture library that it had found.
    Under Preferences > iCloud set this library as the System Photo Library and in turn it will have the ability to upload to iCloud.
    When it's finished I suppose you will have both iPhoto AND Aperture pictures in the one iCloud Photo Library.
    At least I hope the above makes sense.
    Anybody already tried this with good / bad results, let us know here.

    found it here  - 'If you designate a new library as the System Photo Library and then turn on iCloud Photo Library, the photos and videos in the new library will merge with those already in your iCloud Photo Library. If you want to keep the contents of your photo libraries separate, don’t turn on iCloud Photo Library for more than one library in Photos.'
    That bit seems clear. You can merge photos from different libraries by making them 'designated' first  .
    BUT  this means that Photos app only shows you library A , or library B, depending on which one you have opened , but Icloud library contains photos from Both library A and library B .
    is this correct ?
    and if so, does it not get a but confusing ?!?

  • Can we have both 9i and 10g db running on the same machine

    Hi,
    I want to to exp/imp upgrade of my 9i db to 10g db.
    Can I have both 10g and 9i installed on the same server?
    Thanks,
    Kavitha

    Yes, provided that the HW, OS version and Patch level are certified for both 9i and 10g.
    Install 10g into a seperate ORACLE_HOME -- whether under the same "oracle" account or a different (e.g. "oracle10g" account).
    However, you should consider 11g as 10g is being desupported this month (i.e. no new patches / fixes will be available for 10g)
    Hemant K Chitale
    Edited by: Hemant K Chitale on Jun 9, 2010 10:58 AM

  • I am using PS cs6 and lightroom and I am having a hard time know what color space to choose.  The lab that I am using told me that their color space is sRGB.  Do I need to have both PS and Lightroom set at sRGB or should I have PS set at adobe RGB and jus

    I am using PS cs6 and lightroom and I am having a hard time know what color space to choose.  The lab that I am using told me that their color space is sRGB.  Do I need to have both PS and Lightroom set at sRGB or should I have PS set at adobe RGB and just set my export from lightroom as sRGB?

    Please post in the Photoshop forum.
    http://forums.adobe.com/community/photoshop
    Bob

Maybe you are looking for

  • Need more storage?

    I bought an ipod touch gb, without knowing i would probably need more storage is there anything i can do to add more storage. Leave a detailed answer please!

  • Copy from

    Hello Experts, We would like to edit the landed cost (LC) created in the past (in B1 2005A SP01 PL52). After upgrade to B1 2007A SP01 PL10, we want to edit the created lc. However, the document is not available to edit. The LC document is created in

  • Difficult account change

    I have two GL account 1001000 and 1001001 under one Malasyia company code, in FS10N, I can display USD balance and Ringit balance for 1001000 because account currency of 1001000 is USD. I can only display Ringit balance for 1001001 because account cu

  • Imported tracks from mac to itouch ,but now out of running order on itouch

    Any advice as to why when i moved 17 tracks from my itunes library on my Mac that they appeared out of sequence on my Itouch ? and how i can rearrange the order on my itouch to reflect the same as my mac itunes library eg 1-17

  • Delayed email notifications

    I had previously posted about a long delay in receiving email notifications 34 hour lag between posting and mail which had been corrected, but is occurring again.  Currently, I am seeing about a 6 hour delay between posting and mail.