Link to another portlet  with a different layout

Hello
Can somebody point me how to create a link in one portlet which opens
another portlet with a different layout.
I have portlet one in a 3 column layout, I want to open portlet 2 in a
single column layout.
TIA
Gowtham.

Do you sync to the same computer which has both your and her purchases on ? If you do then she should be able to sync them to her phone from it.
If you use different computers then you could copy them from your computer to her computer (if they are not on your computer then you could re-download them on it). You can find where they are stored on your computer by right-clicking (control-click on a Mac) one of them in the Apps part of your iTunes library and selecting 'show in explorer' ('finder' on a Mac). You can then copy them to, for example, a flashdrive and then add them (you will need to authorise your account via the Store > Authorise This Computer menu option) to her computer's iTunes via File > Add To Library and she can then sync them.
If you log into your account on her phone or her computer and re-download those apps on it then you risk tying the phone or computer to your account for 90 days : http://support.apple.com/kb/HT4627

Similar Messages

  • Link to another portlet

    Hello, how can I make a link to another portlet? Both portlets resides in the same project. We run 9iAS 9.0.2.3.

    Ok, I will try it.
    <br><br>
    Nx = Link in the navigation
    <br>Px = Portlet
    <br><br>
    The first site (with active link N2, that means this site will display by clicking N2):
    <br><br>
    N1 P1 P2 P3
    <br><b>N2</b> P4 P5 P6
    <br>N3
    <br>N4
    <br><br>
    The second site (with active link N3):
    <br><br>
    N1 P7 P8 P9
    <br>N2 P10 P11 P12
    <br><b>N3</b>
    <br>N4
    <br><br>
    Now, will be set a link in a portlet (eg. P2) in the first site to forward to the second site, that means by clicking P2 of the first site it will be display the second site.<br>
    I hope this explanation is a little bit better.
    <br><br>Bye Oliver

  • I am new to IPAD and I want o use facetime, how can I use it to communicate with my mac at home, do I need to create another account with a different email account

    I am new to IPAD and I want o use facetime, how can I use it to communicate with my mac at home, do I need to create another account with a different email account

    do I need to create another account with a different email account
    Yes, the email addresses need to be unique to each device. You may use the same Apple ID on each device, but the email address used by each device needs to be different.

  • Is there a way to transfer or copy all my apps to another iPad with a different account? I was required in my job to use the one at work, but I would like to also see my current set ups and apps as in my personal one. Thank you so much!

    Is there a way to transfer or copy all my apps to another iPad with a different account? I was required in my job to use the one at work, but I would like to also see my current set ups and apps as in my personal one. Thank you so much!

    What I suggest is that you try to pair your apple ID with you company ipad and see if it works.
    Here is why::
    I believe that the Apple rules let you. They are something like:
    -- for a shared iDevice, you may put the app on one device
    -- for a device you use exclisively, you may put the app on five (or some number) of iDevices
    I'm not lawyer, so how you interpred this is a question.
    Now, you need to figure out how to do this.
    In the past at least, apple used this terminalogy.
        Personal
        Institution
        Layered. combines personal & institution.
    It depends on how your company has configured the iPad.
    I have read where you can have upto three apple id per device.

  • I've set up email on my iPad (talk mails when connected to my home router and ISP. When connected to a router at another location with a different ISP I can receive mail but not send it. Is there any way round this

    I've set up email on my iPad (talktalk.net) and can send and receive mails when connected to my home router and ISP. When connected to a router at another location with a different ISP I can receive mail but not send it. Is there any way round this?

    I've set up email on my iPad (talktalk.net) and can send and receive mails when connected to my home router and ISP. When connected to a router at another location with a different ISP I can receive mail but not send it. Is there any way round this?

  • T430s keyboard replacement with a different layout?

    It's minor, but I'd like a slightly different layout...home & end keys could be more conveniently placed, and I wish the Fn & Ctrl keys were swapped, because though I can swap them in the BIOS, they're different sizes.

    I've had my T430s for about a week now and am still getting used to the new layout.  I have a lot of muscle memory built up over the years going from a T61p>T400>T420 and now to the new layout.  I really like the backlight and feel of the keys but I constantly find myself hunting for keys that have been moved
    Michael

  • How to convert an xml to another Xml with a different structure...

    hi
    i have an xml which should be converted to a standard xml with an entirely different structure(Different elements)....can this be done with xml,xsl alone or do we need to write an java class along with them...if there are any examples..it would be of great help...plz help me out....as this is a work stopper...
    given below is the kind i have
    <hotelinfo>
    <hotelname>RADISSON HOTEL CHENNAI </hotelname>
    <address>355 C Gst Road St Thomas Mount Chennai1 600016IN</address>     <price>90.00 - 150.00</price>
    <distance>2 (W)</distance>
    </hotelinfo>
    i need to convert it into
    <propertyName>RADISSON HOTEL CHENNAI </propertyName>
    <address>
    <addressLine>355 C Gst Road St Thomas Mount</addressLine>
    <CityName>Chennai</CityName>
    <PostalCode>600 001</PostalCode>
    <StateName>TamilNadu</StateName>
    <CountryName>India</CountryName>
    </address>
    thanks in advance

    Ok here is the code...
    package mypack;
    import java.io.File;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.transform.Result;
    import javax.xml.transform.Source;
    import javax.xml.transform.Transformer;
    import javax.xml.transform.TransformerConfigurationException;
    import javax.xml.transform.TransformerException;
    import javax.xml.transform.TransformerFactory;
    import javax.xml.transform.dom.DOMSource;
    import javax.xml.transform.stream.StreamResult;
    import org.w3c.dom.Document;
    import org.w3c.dom.Node;
    * @author SM23772
    * TODO To change the template for this generated type comment go to
    * Window - Preferences - Java - Code Style - Code Templates
    public class Roopa {
         public static void main(String[] args) {
              File docFile = new File("Roopa.xml");
              Document doc = null;
              Document newDoc = null;
              String hname = null, task = null;
              try {
                   DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
                   DocumentBuilder db = dbf.newDocumentBuilder();
                   doc = db.parse(docFile); //parsing Roopa.xml
                   newDoc = db.newDocument(); //Created New document Object for new xml
                   hname = doc.getElementsByTagName("hotelname").item(0)
                             .getFirstChild().getNodeValue();
                   task = doc.getElementsByTagName("task").item(0).getFirstChild()
                             .getNodeValue();
                   Node rootNode = newDoc.createElement("property-info"); //creating root node;
                   Node pp = newDoc.createElement("name"); //creating a node called name
                   Node taskNode = newDoc.createElement("task"); //creating a node called task
                   pp.appendChild(newDoc.createTextNode(hname)); //appending a text node inisde name
                   taskNode.appendChild(newDoc.createTextNode(task)); //appending the text node inside task
                   rootNode.appendChild(pp); //asppending the nodes inside the root node                       
                   rootNode.appendChild(taskNode);
                   newDoc.appendChild(rootNode); //appending the root node to the document
                   writeXmlFile(newDoc, "Dest.xml"); //function called to write the document to Dest.xml
              } catch (Exception e) {
                   System.out.println(e);
         public static void writeXmlFile(Document doc, String filename) {
              try {
                   // Prepare the DOM document for writing
                   Source source = new DOMSource(doc);
                   // Prepare the output file
                   File file = new File(filename);
                   Result result = new StreamResult(file);
                   // Write the DOM document to the file
                   Transformer xformer = TransformerFactory.newInstance()
                             .newTransformer();
                   xformer.transform(source, result);
              } catch (TransformerConfigurationException e) {
              } catch (TransformerException e) {
    The xml files:
    roopa.xml:
    <hotel>
    <hotelname>RADISSON HOTEL CHENNAI</hotelname>
    <more-info><task>give treate to shanu</task></more-info>
    </hotel>
    Dest.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <property-info><name>RADISSON HOTEL CHENNAI</name><task>give treate to shanu</task></property-info>Please go through the code.. if u have any more concerns do let me know................
    cheers
    Shanu

  • Transferring content from one apple device with one apple id to another device with a different apple id. (Family members)

    My son has an IPod Touch and uses my apple ID to purchase and download music and movies from the Itunes store. He finally got a job and he purchased an IPhone 5 C and has his own apple ID. What is the easies way for him to transfer the contents of his IPod (that was purchased with my apple id) to his new device that has his own apple id?

    iTunes and App store puechaesed are permanently tied to the AppleID used to purchase them. They can't be transfered.

  • How to transfer or share music from one iTunes iPhone to another iPhone with a different Apple ID?

    When my son was younger he would get the music he wanted under my Apple ID on his iPod. Now he's older and has his own Apple ID. He still wants his music we paid for, which is tied to my Apple ID. Is there anyway to share or just transfer from one Apple ID to another on the device? I've read about sharing and authorizing on computers, but we don't have another computer to set up. Thank you all in advance!

    You can't transfer music (nor any other content) from one account to another account, it will remain tied to the account that downloaded it. Also home sharing only works from a computer to a device (or to another computer), it doesn't work between iOS devices.
    Depending upon what country that you are in (music can't be redownloaded in all countries) then he could potentially log into your account on his iPod (I assume that it's an iPod Touch) and redownload his music on it, but that might tie his iPod to your account for 90 days : iTunes Store: Associating a device or computer to your Apple ID.

  • Combine link to another page with the drop down read more of an accordian

    example at PEI Lawyer Referral Service Find a PEI lawyer by type of law practice or law firm  PEi Legal Help  see the item at the top of the left column labelled Business Lawyer Referral  Service
    That is a live link, but it is the label for an accordian drop down box
    THE PROBLEM IS THIS
    If you click on the link part, you get taken to the other page,
    I need to somehow separate the link from the drop down information
    Any bright ideas?
    Thanks

    You can use the accordion label as intro text and then container would include the detailed format of content.
    Thanks,
    Sanjit

  • I have set up another account with a different email which is not mine. AN email has been sent to this email to verify the account, how do i stop this being created?

    I have set up another itunes account by accident. I do not have access to this email as it must belong to someone else. An email verification to set up a new account has been sent to this email know. How do I stop this account from being created?

    To change accounts on your Mac, go to System Preferences, sign out of the current account, then sign into the new account.  When you sign out of the current account it will delete synced data from your Mac.  Assuming your data (such as contacts, calendars, etc.) is in the other iCloud account, it will be synced to your Mac when you sign into this account.

  • HT4914 Can I store music in the cloud using iTunes Match from another computer with a different Apple ID?

    Any advice would be appreciated. Thanks

    You can't transfer music (nor any other content) from one account to another account, it will remain tied to the account that downloaded it. Also home sharing only works from a computer to a device (or to another computer), it doesn't work between iOS devices.
    Depending upon what country that you are in (music can't be redownloaded in all countries) then he could potentially log into your account on his iPod (I assume that it's an iPod Touch) and redownload his music on it, but that might tie his iPod to your account for 90 days : iTunes Store: Associating a device or computer to your Apple ID.

  • Can a portlet dynamically create / programmatically create another portlet?

    Hello. This is my first time posting a question, so please let me know if I'm posting to the wrong newsgroup.
    I'm new to WebLogic Portal, and I downloaded and installed WebLogic Portal 10. I'm working on a portal proof of concept, and my business analyst is asking some tricky questions. One thing he would like to see is when a user clicks a link in one portlet, he would like that portlet to dynamically create/open another portlet on the same portal page. In addition, he wants it to dynamically create a new book so that every time a user clicks on a different link, it dynamically creates a new page in the new book and creates a new portlet on that page.
    After reading through/searching many of the 27 PDFs that came with the download of WebLogic Portal 10, I have not seen anything that refers to dynamic creation of portal artifacts. Does anyone know if this is possible? To me, it doesn't seem like the portal was designed to dynamically create these artifacts. But maybe someone out there knows a way to do this. I'm wondering if I might have to resort to trying to hack my way through a request like that, which is probably not a good idea.
    If anyone can comment on this, I would really appreciate it. Thank you.
    --Steve
    Edited by StevenDHitlin2 at 10/24/2007 6:44 AM

    It's very likely portal backing files can be used.
    They can respond to
    various stages in the portal lifecycle and events to
    manipulate the
    portal structure or perform other business logic.
    http://e-docs.bea.com/wlp/docs100/portals/intro_to_por
    tal_dev.html#wp1028008Gregory,
    Thank you for your reply and for your backing file idea. I read the section you pointed out regarding backing files. In the first paragraph, it states, 'the portlet backing context can be used to specify whether the portlet is visible or hidden'. I noticed that some portal artifacts (books, pages,etc) have a 'hidden' property that can be set to true or false. I didn't really think about it until now, but I suppose I could have my 'dynamic' pages set as hidden=true at first and only make them visible when someone clicks a link in another portlet. The only thing is that my portal would be limited to showing only as many pages as I set up as hidden. For example, if I place three pages in a book and I set them all hidden, then my user can only 'unhide' at most three pages. If he wants more, I have to add more hidden pages to the desktop. It's not the best solution, but I think it would work for now.
    I just have to figure out how to use a backing file to make a portlet tell another portlet or a page to change its hidden property to false. I read a little bit about IPC, and I tried to fiddle around with it a little, but it's still unclear to me how to create a custom event. Does anyone have any advice for me on this topic? Any help would be greatly appreciated. Thank you.
    Steve

  • Multiple layouts - each patch a different layout

    Hello,
    I am looking for a way to change the layout for each patch individually, instead of just having one layout per concert. I'm working on a one man show, so let's say for one song I am singing, so I want lots of parameters for the voice plugins. On the next song I'm playing keyboard, so I want to have a new layout to play around with the synths. Obviously it's too much knobs to squeeze into one layout, it will be a mess.
    The problem is, if I add or remove any object in any one patch, it affects all the other patches as well. But I don't want that. How to solve that?
    Thanks allot for any input!
    sean

    you can not have different layouts in a single concert file, BUT, you can have many concert files with a different layout using same presets.
    On any Concert, you can drag a Patch or Set out to the finder's desktop, so it is copied there as a collection of control items with NO LAYOUT. similarly, you can drag it back to the patch/set bin and have that patch restored again under the current layout.
    Having said that, you could design a MAIN layout to cover all your needs, set all your patches, and then dragging them all to a finder's folder to have them as individual items.
    Then modify your layout as you please and save it under a different name (ex. SOLO LAYOUT, TWO PERF LAYOUT, etc...). You can turn some controls into other kinds, say, a radio button into a slider, change colors, size, placement..but be aware to not ERASE any item to keep the order they were created so it will correspond when loading a patch. If there is an item you do not need, just make it small and place where it does not disturb you.
    you can even set different midi input mapping to control the screen items.
    Once this is done, you can drag your patch items from the finder to this concert file and everything should work the same under the new layout appearance.
    I use this method when I change between different MIDI controllers on stage, to have a screen look similar to my hardware.
    Hope it helps.
    valgreen

  • Stabilization for the project with the different video settings

    If i open project with the settings for 1080p video and then add to it 720p video, how can i make stabilization for it? (When i open another video with the different sequence settings it does not allow me to make stabilization)
    Is there any way of working in one sequence with the different settings of the video?

    Footage that does not match the sequence setting nest first then add the Warp.

Maybe you are looking for

  • How do i save my ipod contents if it is a mac format to a windows computer

    how do i save my ipod contents if it is a mac format to a windows computer

  • Sine.vi clicking when used for realtime output with DAQ Assisstant.

    What I'm Trying to Do: Stepped sine analysis. The program outputs from the DAQ device each of the frequencies entered into the array constant on the left (see VI) in order, taking a measurement of the magnitude of the signal input to the DAQ device f

  • Can't authorize my mac.

    Hello.   i have new macbook air 11.6 and when i open itunes - have error  /    You do not have enough access privilieges for this operation/ and if i Autorize This Computer -     have error There was an error storing your authorization information on

  • ALE audit in IDOC

    In respect of ALE Audit in IDOC 1. All IDOC receivers send Acknowledgement. 2. All IDOC senders expect an Acknowledgement 3. Receiver communication channel is required for ALE Audit 4. Sender communication channel is required for ALE Audit I believe

  • PL/SQL Cartridge with Union Query

    I have a pl/sql cartridge, with 3 select queries connected to each other by a "union". These queries basically generate a report from two tables. One of those queries is based on Table 1, and the other two are based on Table 2. What I need to accompl