TreeTable with two accessors nodeDefinition

Hello to all!
In my pageDef i have next tree binding:
<tree IterBinding="groupsIterator" id="groupsTreeTable" ChangeEventPolicy="none">
<nodeDefinition DefName="projects.GroupsType" Name="nodeGroups">
<AttrNames>
<Item Value="groupLabel"/>
<Item Value="groupId"/>
</AttrNames>
<Accessors>
<Item Value="themes"/>
</Accessors>
</nodeDefinition>
<nodeDefinition DefName="projects.ThemeType" Name="nodeThemes">
<AttrNames>
<Item Value="themeId"/>
<Item Value="genereteInKML"/>
</AttrNames>
*<Accessors>*
*<Item Value="themeInfo" label="themeInfos">*
*<Item Value="themeKML" label="themeKMLs">*
*</Accessors>*
</nodeDefinition>
<nodeDefinition DefName="projects.ThemeInfoDataType" Name="nodeThemeInfos" >
<AttrNames>
<Item Value="label"/>
<Item Value="column"/>
<Item Value="columnType"/>
<Item Value="id"/>
</AttrNames>
</nodeDefinition>
<nodeDefinition DefName="projects.ThemeKMLType" Name="nodeThemeKMLs">
<AttrNames>
<Item Value="extrude"/>
<Item Value="altitudeMode"/>
<Item Value="color"/>
<Item Value="colorMode"/>
<Item Value="lineStyleWidth"/>
<Item Value="styleId"/>
<Item Value="tessellate"/>
</AttrNames>
</nodeDefinition>
</tree>
Using that binding i builded treetable. It looks like:
->group
-->theme
--->themeInfos
----->themeinfo
--->themeKMLs
----->themeKML
And now is what i need to know is what type of node is selected.
In past i done it using that:
RichTreeTable rTT = (RichTreeTable)getTreeTable();
RowKeySet rks = rTT.getSelectedRowKeys();
Iterator rksIterator = rks.iterator();
CollectionModel model = (CollectionModel)rTT.getValue();
JUCtrlHierBinding rttBinding = (JUCtrlHierBinding)model.getWrappedData();
//if there are nodes in tree table
if (rksIterator.hasNext()) {
while (rksIterator.hasNext()) {
List nodeKey = (List)rksIterator.next();
JUCtrlHierNodeBinding node = rttBinding.findNodeByKeyPath(nodeKey);
node.getHierTypeBinding().getStructureDefName()
But in that time i have no nodes with two or more accessors. treeTable were looking like that:
->group
-->theme
--->themeinfo
In that case I was able to get current node type and, if i need it, add node with same type or add child node to it using previous code.
Now i have this two extra nodes in treeTable (*->themeInfos, ->themeKMLs*) and when i try to get its type, to choose what to do next, i get them parent node type theme.
Is there solution to get exactly "type" of selected node?
P.S. English not my native language, so, excuse me
Edited by: 930033 on 24.04.2012 23:27
Edited by: 930033 on 24.04.2012 23:27
Edited by: 930033 on 25.04.2012 1:22

Hi,
found a solution in Duncan Mills "Oracle JDeveloper 11g Handbook". However, it doesn't allow for two root nodes but sibling child nodes. So not quite what you wanted
Frank

Similar Messages

  • TreeTable with inputText column data gets lost in adf 10g

    Hello All. I have a TreeTable in my page with two columns for user inputs. After a node is expanded, the data gets lost... The TreeTable was created using ViewObjects, here is one example of the sql query of one of the ViewObjects:
    select distinct det.cliente id_cliente
    , cust.customer_name descripcion
    , city.id_simcot
    , to_number(null) horas_normales
    , to_number(null) horas_recargo
    , 'CLIENTE' tipo
    from grc_dist_factura dist
    , grc_det_simcot_v city
    , grc_det_dist_factura det
    , ra_customers cust
    where det.id_dist_fact = dist.id_dist_fact
    and cust.party_id = det.cliente
    and dist.id_det_simcot = city.id_det_simcot
    and city.tipo = 'CIUDAD'
    The inputText are mapped to the attributes HorasNormales and HorasRecargo. Those columns does not existe in DataBase, that's why I create them in the View Object in that way.
    This is my TreeTable:
    <af:treeTable value="#{bindings.GrcConfTarifaRaizView.treeModel}"
    var="node"
    binding="#{ConfiguracionTarifas.treeTable1}"
    id="treeTable1" width="100%"
    emptyText="No hay un Arbol Disponible.">
    <f:facet name="nodeStamp">
    <af:column binding="#{ConfiguracionTarifas.column1}"
    id="column1" noWrap="true" headerNoWrap="true"
    headerText="Descripcion">
    <af:outputText value="#{node.Descripcion}"
    binding="#{ConfiguracionTarifas.outputText2}"
    id="outputText2"/>
    </af:column>
    </f:facet>
    <f:facet name="pathStamp">
    <af:outputText value="#{node.Descripcion}"
    binding="#{ConfiguracionTarifas.outputText3}"
    id="outputText3"/>
    </f:facet>
    <af:column sortable="false" headerText="Tarifa Hora Normal"
    formatType="number"
    binding="#{ConfiguracionTarifas.column2}" id="column2">
    <af:inputText binding="#{ConfiguracionTarifas.txtHoraNormal}"
    id="txtHoraNormal" rendered="#{node.Tipo ne 'RAIZ'}"
    value="#{node.HorasNormales}">
    </af:inputText>
    </af:column>
    <af:column sortable="false" headerText="Tarifa Hora Recargo"
    formatType="number"
    binding="#{ConfiguracionTarifas.column3}" id="column3">
    <af:inputText binding="#{ConfiguracionTarifas.txtHoraRecargo}"
    id="txtHoraRecargo" rendered="#{node.Tipo ne 'RAIZ'}"
    value="#{node.HorasRecargo}"/>
    </af:column>
    </af:treeTable>
    And this is the page Def:
    <tree id="GrcConfTarifaRaizView"
    IterBinding="GrcConfTarifaRaizViewIterator">
    <AttrNames>
    <Item Value="IdSimcot"/>
    <Item Value="Descripcion"/>
    <Item Value="Tipo"/>
    <Item Value="HorasNormales"/>
    <Item Value="HorasRecargo"/>
    </AttrNames>
    <nodeDefinition DefName="gsgappl.grc.datamodel.view.confTarifa.GrcConfTarifaRaizView"
    id="GrcConfTarifaRaizViewNode">
    <AttrNames>
    <Item Value="IdSimcot"/>
    <Item Value="Descripcion"/>
    <Item Value="Tipo"/>
    <Item Value="HorasNormales"/>
    <Item Value="HorasRecargo"/>
    </AttrNames>
    <Accessors>
    <Item Value="ClientesView"/>
    </Accessors>
    </nodeDefinition>
    <nodeDefinition DefName="gsgappl.grc.datamodel.view.confTarifa.GrcConfTarifaClientesView"
    id="GrcConfTarifaClientesViewNode">
    <AttrNames>
    <Item Value="IdCliente"/>
    <Item Value="Descripcion"/>
    <Item Value="IdSimcot"/>
    <Item Value="Tipo"/>
    <Item Value="HorasNormales"/>
    <Item Value="HorasRecargo"/>
    </AttrNames>
    <Accessors>
    <Item Value="RegionalesView"/>
    </Accessors>
    </nodeDefinition>
    <nodeDefinition DefName="gsgappl.grc.datamodel.view.confTarifa.GrcConfTarifaRegionalesView"
    id="GrcConfTarifaRegionalesViewNode">
    <AttrNames>
    <Item Value="CodRegional"/>
    <Item Value="Descripcion"/>
    <Item Value="IdSimcot"/>
    <Item Value="IdCliente"/>
    <Item Value="Tipo"/>
    <Item Value="HorasNormales"/>
    <Item Value="HorasRecargo"/>
    </AttrNames>
    <Accessors>
    <Item Value="CiudadesView"/>
    </Accessors>
    </nodeDefinition>
    <nodeDefinition DefName="gsgappl.grc.datamodel.view.confTarifa.GrcConfTarifaCiudadesView"
    id="GrcConfTarifaCiudadesViewNode">
    <AttrNames>
    <Item Value="CodCiudad"/>
    <Item Value="Descripcion"/>
    <Item Value="CodRegional"/>
    <Item Value="IdSimcot"/>
    <Item Value="IdCliente"/>
    <Item Value="Tipo"/>
    <Item Value="HorasNormales"/>
    <Item Value="HorasRecargo"/>
    </AttrNames>
    </nodeDefinition>
    </tree>
    Note the Node Definition for gsgappl.grc.datamodel.view.confTarifa.GrcConfTarifaClientesView, it correspond to the View Object showed at the beginning of the post.
    Can any one help me please?
    bye

    Thanks for the links.
    I checked them up, but first, I noticed they apply to adf 11g, and second none of them use inputText in columns. I really couldn't find a any idea to solve my issue.
    Any other suggestions?
    My problem is that when I expand/collapse a node, the values in the inputTexts are lost. I don't know if I need something else on my page Definition...
    thank you.

  • TreeTable with different Root

    Hi all,
    i search in the forum but i can't found.
    I need to have a treeTable with different root.
    All the exaples that i found didn't explain how to make this!
    Someone can help me?
    i.e.
    RootA
    |___rrrrrrrr
    | |___ xxx
    | |___yyy
    |____dddddd
    RootB
    |___dddd
    |___ www
    |___kkk
    It's look like to see the folders without a ROOT master.
    Thank's a lot!
    Riccardo

    Hi,
    >>they are not being authorized because the user groups cannot be assigned. This is because the user cannot be found in LDAP/AD for forestA.
    How did we configure the DNS resolution between the two forests? Here, we can check event logs in Event Viewer to see if some related events were logged.
    Regarding how to accessing resources across forest, the following articles can be referred to as reference.
    Accessing Resources across forest and achieve Single Sign ON (Part1)
    http://blogs.technet.com/b/mir/archive/2011/06/12/accessing-resources-across-forest-and-achieve-single-sign-on-part1.aspx
    Accessing resources across forests
    https://technet.microsoft.com/en-us/library/cc772808(v=ws.10).aspx
    Best regards,
    Frank Shen
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Is iPod Classic compatible with existing accessories?

    I was thinking of purchasing an iPod Classic but I noticed that, when you shop for accessories in the Online Apple Store, many of the accessories that are listed as compatible with the 5G Video iPod are not listed as compatible with the iPod Classic. Two accessories concern me most: my Bose SoundDock and my Sonic 55 video playback system.
    Is it the same universal connector and does it handle video in the same manner (in other words, do I still have to enable TV Out on my iPod Classic and, when I do, will the video still play on the Sonic 55's larger screen like with my 5G Video iPod?)
    I phoned the Apple Store and asked the rep this question, but all he did was look it up in the store like I did and then he said, "I guess it's not compatible."
    I think it would be a big mistake on Apple's part if this update made existing accessories unusable.
    Has anybody had any hands on with this issue?
    Thanks in advance

    I bought a g5 video ipod compatible Belkin Tune-Talk today (microphone) .... It doesn't work.
    Virtually no accessories (accept apple-made products) function with the classic. The folks at Belkin said they were blind-sided with this release (i.e. not given any non-disclosure agreement to sign in order to develop new, compatible accessories for a simultaneous roll-out with the new Apple products). So, they are now scrambling at Belkin, as every other vendor is. It will take weeks or months before this mess is sorted out. Even the Apple store "geniuses" were flying in the dark ("yeah go ahead and buy the Tune-talk, the video ipod stuff will work with the classic"), and so was Apple tech support (some nice, but outsourced Indian-sounding fellow answered who had no idea what was going on=deer in the headlights syndrome).
    MACNN.com reports that the problem rests with vendor products not being able to establish screen control over the new Apple products. I can confirm that from my own experience.
    Now I have to go back to the store and return this useless accessory, which takes time off my life and lowers the joy quotient of purchasing Apple ... and all this simply because somebody in charge of the roll out never thought of informing Apple "geniuses" that accessories are broken (which could have been accomplished through a simple form lettered faxed or e-mailed to each store manager).
    Good luck all!

  • How to enter invoice with two different tax codes in one line?

    Dear friends,
    I have this PO for which I enter the invoice.
    I recieve later a subsequent debit for this PO from the transporter. This subsequent invoice has got extra debits, one with 21% VAT and one with 19% VAT, which means two items with two different tax codes.
    I want to enter this subsequent debit for each item of the PO, and I want to enter both debits in every item of the PO.
    How can I enter in one row in MIRO a debit with two different tax codes.
    Thank you.

    I want in the same line item to enter two tax codes.
    Do you Know if there is any way to do this?
    It is a subsequent debit and it has two items with two different tax codes. I want to enter the subsequent debit for a PO with many items and enter the value of the whole subsequent invoice. So there is the need to enter one line item with two tax codes.
    How can this be done?
    Thank you?

  • I need to upgrade memory slots on my Mac mid 2010 up to 4 GB module which is currently 2GB with two different 1GB memory  slots.Is it compatible and would like to know about the cost?

    I need to upgrade memory slots on my Mac mid 2010 up to 4 GB module which is currently 2GB with two different 1GB memory  slots.Is it compatible and would like to know about the cost?

    this sub forum is about running windows on macs maybe you should try
    https://discussions.apple.com/community/notebooks/macbook

  • I have a serious (and bizarre!) issue with my novation impulse (Although i've tried it with two other keyboards and i still have the same problem) and its compatibility with mainstage 3

    i have a serious (and bizarre!) issue with my novation impulse (Although i've tried it with two other keyboards and i still have the same problem) and its compatibility with mainstage 3.
    the problem is best explained on the following one - page thread: 
    https://discussions.apple.com/thread/3951518?start=0&tstart=0
    (Clearly i'm not alone in this problem, although i think i figured out what's going wrong a little more than he did...read on!)
    his solution, to put mainstage in jump mode, is very unsatisfactory to me, as it bounces all of a sudden to drastically different settings.
    basically, my analysis is that my controller is NOT receiving MIDI date from mainstage.  in other words, mainstage knows what my controller is doing, but my controller doens't know what mainstage is doing.
     let's say i turn the knob all the way to the right ... 127...and the virtual fader goes to the right like it's supposed to. 
    now...next...let's say i change to a different patch, where that same VIRTUAL fader is not at the max clockwise position..maybe it's only at 1pm.  now when i turn the physical knob to the RIGHT, the midi data is still at 127 on the controller!  it didn't "reset" to sync up with the new level (say 80 or so) setting on the new patch.  so i can't increase that new setting of 80 by continuing to turn the knob to the right.  i have to turn it all the way to zero,...and then continue PAST zero until the controller thinks that IT is at 0...at that point the controller and mainstage are in agreement, and things work fine....so bascially, the keyboard thinks the level is at max...but mainstage thinks the level is at 1pm.
    i am using Logic 9, and i have a macbook pro 2.9 Ghz I7 with 8 gigs of memory and OS X 10.8.4

    Hi Josh,
    Thanks for taking the time to contact us here a Novation for technical support. Lets continue to correspond via email so we can get your issue resolved.
    Thanks.
    Mike Towns

  • WinXP with two users - can we have two separate iTunes, one for each user?

    Question:  On my Dell WinXPPro SP3 desktop with two users (myself and my wife), can each user have a separate iTunes - so what each of us does with iTunes has no effect on the other?
    Details:  Yesterday, June 29 2012, I bought a new iPad 3 with WiFi only, my first Apple product.  My #1 motive for buying it is to copy movie files (avi, m4v, mp4, etc.) from my WinXP setup (PC plus hard drive) to my new iPad to watch the movies in bed on the new iPad. I understand that I shall need to install iTunes on both the iPad and the PC in order to move or copy the existing movies from the PC side to the iPad.  (I also understand that I won't be able to use iCloud because iCloud will not run on WinXP, only Vista and Win7.)  [By the way, if iTunes will NOT help me do what I want to do, please let me know.  But that is not my question.]
    I am only one of two users on the PC.  My wife is the second user on the PC.  She already installed iTunes on the PC for her own use.  She is an avid iTunes user.   Most of the time, she does not use this PC.  She has her own WinXPPro SP3 Dell laptop, which is what she uses 99% of the time.  She has also had an iPod for some time, hence her use of iTunes.  And now, for the last two weeks, she also has a new iPhone 4S and her own iPad.  So her use of iTunes will grow.  The important point is the following - whatever I do on my side, I do not want to interfere with or disrupt her use of iTunes.  Not even for a second.
    So, can I install or re-install or somehow set up iTunes on MY user on the PC so that it does not in any way use or affect her iTunes?  If the answer is "yes", please give me a step-by-step and list all details.  Is there a YouTube that shows this specifically?  
    More details:  Right now, in C:\Program Files, before I have tried to install anything myself, there are already folders for Apple Software Update, iPod and iTunes, which derive from my wife's installations of these Apple programs some time ago.  I have just now run the Apple Software Updater, which first updated itself on this PC to version 2.1.3.127 and then updated her iTunes on this PC to version 10.6.3.25.  (As a result, the following processes/services are now running, which normally don't run when I am the user: 
      C:\Program Files\Common Files\Apple\Mobile Device Support\AppleMobileDeviceService.exe
      C:\Program Files\iPod\bin\iPodService.exe
      C:\Program Files\iTunes\iTunesHelper.exe
    Also, the following processes will launch the next time I reboot this PC (which normally don't launch when I am the user):
      C:\Program Files\Common Files\Apple\Apple Application Support\APSDaemon.exe
      C:\Program Files\iTunes\iTunesHelper.exe )
    My wife says her iTunes is NOT set for Family Share.  (That sounds correct to me, for now and forever.)
    Summary:  So, how do I install iTunes for myself (for the first time) for my user on this PC so it does not - even for a second - interfere or affect my wife's use of her iTunes on all of her devices?
    Thanks !!!

    Mr. Wiclee - thanks for the link.
    When I said I had not "installed" iTunes on my iPad, I suppose I meant I have not yet signed in to iTunes, ever.  I suppose when I sign in to iTunes the first time on my new iPad, I will be required to create a new iTunes account?  Then refer to such new iTunes account when I launch iTunes for the first time on my PC as myself?  Or will I still need to use Method Three in your link? 
    The crucial thing is this - when I turn on iTunes on the PC for the first time with me as User, I do NOT want it to connect to my wife's iTunes account.  On my PC, I would want iTunes to ask me who I am, so I can then sign in with my new iTunes account that I had just created on my iPad.  How can I be sure to accomplish this goal?
    In my PC, if I look at Documents and Settings and compare the two folders for we two different users, one for me and one for my wife, I can see that my wife's has Application Data and Local Settings for her various Apple programs.  However, so do I in my User even though I have not yet installed any Apple programs on my side.  I am concerned that when I finall launch iTunes when I am user, it will open up in my wife's iTunes account, which I truly want to avoid.
    Thanks.  Please advise.

  • Report with two Command is empty if one of the two commands returns no data

    Hi all,
    I have a report with two Commands not linked together.
    If ONLY one of the two Commands returns no data, the full report is empty (although the other Command returns data).
    I'm using Crystal Report 2008 and the CRJ 12.2.205
    Have an idea?

    Hi Ted,
    how can I solve the problem, please? It is important.
    If I can help yourself, the problem is appeared in many reports since I updated the library (the old library version 11.8.4.1094 works fine with all). I'm waiting for your answer, please.
    Thank you very much.

  • One MIRO document with two different vendors for two different line items

    Can it possible to make MIRO for a PO which is having two conditions(Basic price+Freight) with two different vendors.
    MIRO document needs:
    GR/IR Clearing    Dr.
    Freight Clearing  Dr.
    Vendor RM(X)         Cr.
    Vendor Freight(Y)   Cr.
    Is it possible to post the above document at a time not individually for each condition.

    Hi,
    Yes, It is possible to post Material and delivery cost in one document.where in material supplier is different than the Frieght vendor.
    Itm PK  BusA Acct no.   Description                    Tx     Amount in   USD   
    001 89       130001     Stock-Ingredients               244 0            880.00 
    002 96       320001     GR/IR Account - Ing.            244 0          1,200.00-
    003 86       520002     Ingredients - PPV               244 0          3,297.87 
    004 50       320008     GR/IR Account - Duty            244 0            797.87-
    005 50       320009     GR/IR Account - Fre.            244 0          2,180.00-
    Thanks
    Dinabandhu

  • RSBKCHECKBUFFER job scheduled twice and both canceling suddenly with two er

    Hello,
    This job RSBKCHECKBUFFER  is scheduled to run two times in production system starting at same time 12:00 pm and it was running fine till 12.04.11 but both the jobs started failing suddenly since 12.05.11 with two different sql errors at times
    DBIF_RSQL_SQL_ERROR
    CX_SY_OPEN_SQL_DB
    1. Database error text........: "SQL1224N The database manager is not able to
      accept new requests, has terminated all requests in progress, or has
      terminated the specified request because of an error or a forced interrupt.
      SQLSTATE=55032 row=1"
    2. Database error text........: "SQL0911N The current transaction has been rolled
     back because of a deadlock or timeout. Reason code "2". SQLSTATE=40001 row=1"
    Also both the job is scheduled to run with two different parameters
    Parameters
    &0000000000001
    &0000000000000
    Can anyone let me know what could be the reason of sudden failure since 12.05.11.
    Also if I schedule the job to run only once in the system will it solve the problem ?

    Hello Shradha,
    1. Database error text........: "SQL1224N The database manager is not able to accept new requests, has terminated all requests in progress, or has   terminated the specified request because of an error or a forced interrupt.
      SQLSTATE=55032 row=1"
    - As far as I know this is serious problem in production environment. Looks like your DB was being restarted at that time. Please have your DBA team to review db2diag.log for error details.
    2. Database error text........: "SQL0911N The current transaction has been rolled  back because of a deadlock or timeout. Reason code "2". SQLSTATE=40001 row=1" .
    - Looks like second job was overlapped with first one. Please try to run the job once in a day or change of schedule of both jobs to ensure no overlap.
    Thanks,
    Siva Kumar

  • SQL Injection, replace single quote with two single quotes?

    Is replacing a single quote with two single quotes adequate
    for eliminating
    SQL injection attacks? This article (
    http://www.devguru.com/features/kb/kb100206.asp
    ) offers that advice, and it
    enabled me to allow users to search name fields in the
    database that contain
    single quotes.
    I was advised to use "Paramaterized SQL" in an earlier post,
    but I can't
    understand the concept behind that method, and whether it
    applies to
    queries, writes, or both.

    Then you can use both stored procedures and prepared
    statements.
    Both provide better protection than simply replacing
    apostrophes.
    Prepared statements are simple:
    Set myCommand = Server.CreateObject("ADODB.Command")
    ...snip...
    myCommand.CommandText = "INSERT INTO Users([Name], [Email])
    VALUES (?, ?)"
    ...snip...
    myCommand.Parameters.Append
    myCommand.CreateParameter("@Name",200,1,50,Name)
    myCommand.Parameters.Append
    myCommand.CreateParameter("@Email",200,1,50,Email)
    myCommand.Execute ,,128 'the ,,128 sets execution flags that
    tell ADO not to
    look for rows to be returned. This saves the expense of
    creating a
    recordset object you don't need.
    Stored procedures are executed in a similar manner. DW can
    help you with a
    stored procedure through the "Command (Stored Procedure)"
    server behavior.
    You can see a full example of a prepared statement by looking
    at DW's
    recordset code after you've created a recordset using version
    8.02.
    "Mike Z" <[email protected]> wrote in message
    news:eo5idq$3qr$[email protected]..
    >I should have repeated this, I am using VBScript in ASP,
    with an Access DB.
    >

  • Magic Mouse  question. I have set this in Preferences by ticking Swipe between pages with  one finger and also Swipe between full-screen apps with two fingers,  however when I try to do the latter, the 2 finger swipe will take me only to the dashboard and

    It's a Magic Mouse question. I have set this up in Preferences by ticking Swipe between pages with one finger and also Swipe between full-screen apps with two fingers,  however when I try to do the latter, the 2 finger swipe will take me from the app that I am on to the dashboard only and not to my other open apps.
    I also find that Smart zoom only works with some apps, for instance not with Word docs or email.
    How can I correct this please?

    Just figured out it also does not work with the Mail app.

  • How do we sync contacts and calendars (ONLY) between two iCloud accounts, two iPhones and one iMac with two user accounts?

    This is complex.  Until today we had one iMac with two user accounts - one for me and the other for my wife.  We sync'd our calendars and contacts between our two user accounts using my iCloud account, thereby keeping our schedules coordinated and our contacts information always the same between us.  Also, as I had an iPhone, I sync'd my phone with my iCloud account, thereby keeping the contacts and calendars in the two user accounts on the iMac AND my iPhone sync'd.  (I also sync'd other things, like Notes and Mail and Safari settings, between my iPhone and my user account on the iMac, but my wife did not want to be burdened with all my emails showing up in her email account and I wasn't interested in hers, etc., so we didn't sync anything between us other than calendars and contacts.)
    We've finally bought my wife an iPhone and set up an iCloud account for her.  And of course she now wants to sync several items from HER account on our iMac to HER iPhone, but I don't want them, just as she doesn't want all of my other stuff.  But we still want our mutual calendars and contacts to sync to HER new iPhone, just like they already do to mine.  But I can't figure out how to CHANGE her iMac user account from using MY iCloud account on the iMac to using HER new iCloud account, and then having HER iCloud account speak to MY iCloud account but share JUST our calendars and contacts.
    Originally I tried a workaround by simply having her iPhone log into my iCloud account.  That works great for the calendars and the contacts.  But...she can't sync anything else from her iMac account to her new iPhone because she's presently "forced" to use my iCloud account.  And neither of us want to sync our other things to each other's iMac accounts or iPhones.  Also as we're both using my iCloud account, in things like the Find My iPhone app, the Cloud is seeking two phones labeled with my name and none with her's.  So we definitely don't want this as the set-up and communications network between our devices.
    We want to set up our users on the iMac to sync to our SEPARATE AND DIFFERENT iCloud accounts and then have those iCloud accounts sync calendars and contacts (ONLY) between themselves, and then push that data to our separate iPhones (or the other way, from either of our iPhones to the individual accounts on our iMac and the other person's iPhone).  Does this description make sense to you?  I've diagramed it nicely using Keynote, but even thiough I can draw it, I can't figure out how to set up and configure all the devices to make it work.  If you would like me to send the Keynote slides (just two of them - the current and desired configurations - please send your email address to me at [email protected] and I'll be happy to forward it to you.
    If anyone can help me set this up I'd be most appreciative!  Thanks so much.  Merry Christmas and Happy New Year to all readers in this community!

    BobT.
    I had the same problem, and decided to look into it last night.
    First of all, the solution I would like to have is for Apple to allow for selection of iCloud accounts per application, i.e. Contacts to one, Photo Stream to another. I believe this would be the most straight forward solution for the problem we are facing. 
    Since this is not an option I came up with a workaround. I was most interested in solving this for Contacts, so this is what I tested for. Now I have all 3 devices with the same contacts.
    1) Turn off iCloud for Contacts on all devices. On the device that has the Contacts list that you would like to propagate to all others select to keep the contacts, and on the others select not to keep them.
       Note that the current backups still exist on iCloud, so in case something goes wrong you can still turn the iCloud for Contacts back on to get your current Contacts back.
    2) In iTunes, sync All Contacts with the phones, starting with the one with the Contacts content you chose to keep.
    From this point on, the 3 devices should sync contacts with each other.
    This, of course, will stop your iCloud backups of Contacts, but I don't think this is really needed. You are already storing copies of your Conacts on 3 devices, which for good parts of the day are likely not all co-located. You also potentially have Time Machine backups turned on, which would mean there is a 4th copy there as well. For the case of Contacts iCloud only complicates matter ... that is until Apple implements the solution I first wrote about.

  • I have one itunes account with two phones. when i phone one of the numbers both phones have started to ring, only when connected to wifi at home. How do i resolve this please?

    I have one itunes account with two phones assigned to it, sons and daughters, (5s). When i phone one of the numbers both phones have started to ring, only when connected to wifi at home. The problem does not occur when not connected to wifi. How do i resolve this please? texting is fine it is only when ringing one of the numbers.

    <http://support.apple.com/kb/HT6337>
    "To turn off iPhone Cellular Calls on a device, go to Settings > FaceTime and turn off iPhone Cellular Calls."

Maybe you are looking for

  • Can I Get Some Assistance From The Forum Genius Bar?

    Hi everyone, I don't usually post here unless I am at the point of being beyond frustration when it comes to solving my issues, because when they occur -- they are always the ones that don't have a simple fix it seems. The issue: I only use Mail to a

  • How to find serial number of current subscription

    I want to apply it to a business account subscription to get a discount, but I can't find the serial number of my current products.

  • LMS 4.2.1 password recovery system administrator ADE-OS

    Hi, How is-it possible to do a recovery password for sysadmin on ADE-OS ? We're using LMS 4.2.1 and my customer doesn't remember the username and password created during installation. We have the admin user for the https connection. Thanks, Jeff

  • Setting up projects

    I am new to Spaces. Is it possible to associate an application with certain documents in particular spaces. For instance, I am working on one project with Word files and I want it assigned to Space 1. I have another project with Word files that I wan

  • Inactive Folder Icons in iDVD 4.0.1?

    Hey guys, I Hope someone else has run into this issue... After previewing and burning what appeared to be a successful DVD, a third of my folder icons are inactive. They're not greyed-out, I just can't click on them to access the sub-menus. The major