I have found a solution to show different types of components in a column

Hi All,
I have asked this question a while back at this thread
http://swforum.sun.com/jive/thread.jspa?messageID=209845
Now I am able to find the solution for it.
I wanted to share this with you guys :)
Here is the approach
1. Create a new Project
2. Drag a dataTable component on default page (created by creator)
3. Remove column 3
4. Remove dummy data from Column 2
5. drag OutputText Object into Column2
6. drag Image component into column 2
7. drag checkBox component into Column 2. Now youe Page1.jsp code should look like something like Below
<h:dataTable binding="#{Page1.dataTable1}" headerClass="list-header" id="dataTable1" rowClasses="list-row-even,list-row-odd"
                        style="left: 192px; top: 120px; position: absolute" value="#{Page1.dataTable1Model}" var="currentRow">
                        <h:column binding="#{Page1.column1}" id="column1">
                            <h:outputText binding="#{Page1.outputText1}" id="outputText1" value="#{currentRow['COLUMN1']}"/>
                            <f:facet name="header">
                                <h:outputText binding="#{Page1.outputText2}" id="outputText2" value="Number"/>
                            </f:facet>
                        </h:column>
                        <h:column binding="#{Page1.column2}" id="column2">
                            <f:facet name="header">
                                <h:outputText binding="#{Page1.outputText4}" id="outputText4" value="Image/Text/CheckBox"/>
                            </f:facet>
                            <h:outputText binding="#{Page1.outputText7}" id="outputText7"/>
                            <h:graphicImage binding="#{Page1.image1}" id="image1" value="resources/prime.GIF"/>
                            <h:selectBooleanCheckbox binding="#{Page1.checkbox1}" id="checkbox1"/>
                        </h:column>
                    </h:dataTable>8. Now create a bean Called NumberBean
9. Add properties oddRender,evenRender,primeRender of type boolean
* NumberBean.java
* Created on July 16, 2005, 12:08 PM
package webapplication11;
* @author  user
public class NumberBean {
     * Holds value of property oddRender.
    private boolean oddRender;
     * Holds value of property evenRender.
    private boolean evenRender;
     * Holds value of property primeRender.
    private boolean primeRender;
     * Holds value of property value.
    private int value;
    /** Creates a new instance of NumberBean */
    public NumberBean() {
     * Getter for property oddRender.
     * @return Value of property oddRender.
    public boolean isOddRender() {
        return this.oddRender;
     * Setter for property oddRender.
     * @param oddRender New value of property oddRender.
    public void setOddRender(boolean oddRender) {
        this.oddRender = oddRender;
     * Getter for property evenRender.
     * @return Value of property evenRender.
    public boolean isEvenRender() {
        return this.evenRender;
     * Setter for property evenRender.
     * @param evenRender New value of property evenRender.
    public void setEvenRender(boolean evenRender) {
        this.evenRender = evenRender;
     * Getter for property primeRender.
     * @return Value of property primeRender.
    public boolean isPrimeRender() {
        return this.primeRender;
     * Setter for property primeRender.
     * @param primeRender New value of property primeRender.
    public void setPrimeRender(boolean primeRender) {
        this.primeRender = primeRender;
     * Getter for property value.
     * @return Value of property value.
    public int getValue() {
        return this.value;
     * Setter for property value.
     * @param value New value of property value.
    public void setValue(int value) {
        this.value = value;
}10.Add private method "isPrime" in Page1.java(default bean created by studio creator)
private boolean isPrime(int prime)
        if(prime==2)
            return true;
        int factors=0;
        for(int i=1;i<=prime;i++)
            if(prime%i==0)
                factors++;
            if(factors>2)
                return false;
        return true;
    }11. Now add the NumberBean array as property in Page1.java
12. You will see following methods and private variable in Page1.java file
     * Getter for property numberBeanArray.
     * @return Value of property numberBeanArray.
    public NumberBean[] getNumberBeanArray() {
        return this.numberBeanArray;
     * Setter for property numberBeanArray.
     * @param numberBean New value of property numberBeanArray.
    public void setNumberBeanArray(NumberBean[] numberBeanArray) {
        this.numberBeanArray = numberBeanArray;
     * Holds value of property numberBeanArray.
    private NumberBean[] numberBeanArray;
    13 Now modify the Constructor of Page1.java as below
         java.util.Vector results=new java.util.Vector();
            for(int i=1;i<=100;i++)
                NumberBean bean=new NumberBean();
                bean.setValue(i);
                if(i%2==0)
                    bean.setEvenRender(true);
                    bean.setOddRender(false);
                else
                    bean.setEvenRender(false);
                    bean.setOddRender(true);
                if(isPrime(i))
                    bean.setPrimeRender(true);
                else
                    bean.setPrimeRender(false);
          results.add(bean);
            numberBeanArray=(NumberBean[])results.toArray(new NumberBean[results.size()]);
       14. Now Change the JSP code as below
<h:dataTable binding="#{Page1.dataTable1}" headerClass="list-header" id="dataTable1" rowClasses="list-row-even,list-row-odd"
                        style="left: 192px; top: 120px; position: absolute" value="#{Page1.numberBeanArray}" var="currentRow">
                        <h:column binding="#{Page1.column1}" id="column1">
                            <h:outputText binding="#{Page1.outputText1}" id="outputText1" value="#{currentRow['value']}"/>
                            <f:facet name="header">
                                <h:outputText binding="#{Page1.outputText2}" id="outputText2" value="Number"/>
                            </f:facet>
                        </h:column>
                        <h:column binding="#{Page1.column2}" id="column2">
                            <f:facet name="header">
                                <h:outputText binding="#{Page1.outputText4}" id="outputText4" value="Image/Text/CheckBox"/>
                            </f:facet>
                            <h:outputText binding="#{Page1.outputText7}" id="outputText7" rendered="#{currentRow['oddRender']}" value="Odd Number"/>
                            <h:graphicImage binding="#{Page1.image1}" id="image1" rendered="#{currentRow['primeRender']}" value="resources/prime.GIF"/>
                            <h:selectBooleanCheckbox binding="#{Page1.checkbox1}" id="checkbox1" rendered="#{currentRow['evenRender']}" value="Even Number"/>
                        </h:column>
                    </h:dataTable>And also you can downloqad this from my personal link
http://www.geocities.com/sudhakar_koundinya/code.zip
Thanks & Best Regards
Sudhakar

Hi,
Thanks for sharing the solution. This helps the developer community a lot.
Thanks,
Rk

Similar Messages

  • How to show different types of components in acolumn of a dataTable?

    Hi All,
    Based on the conditions, I may want to show outputText field in row 1 and Link in row two for a particular column. of a dataTable.
    How can I do this??
    Thanks
    Sudhakar

    Giri I have found a way to show various components on conditional basis
    Here is the below example for that approach
    1. Create a new Project
    2. Drag a dataTable component on default page (created by creator)
    3. Remove column 3
    4. Remove dummy data from Column 2
    5. drag OutputText Object into Column2
    6. drag Image component into column 2
    7. drag checkBox component into Column 2. Now youe Page1.jsp code should look like something like Below
    <h:dataTable binding="#{Page1.dataTable1}" headerClass="list-header" id="dataTable1" rowClasses="list-row-even,list-row-odd"
                            style="left: 192px; top: 120px; position: absolute" value="#{Page1.dataTable1Model}" var="currentRow">
                            <h:column binding="#{Page1.column1}" id="column1">
                                <h:outputText binding="#{Page1.outputText1}" id="outputText1" value="#{currentRow['COLUMN1']}"/>
                                <f:facet name="header">
                                    <h:outputText binding="#{Page1.outputText2}" id="outputText2" value="Number"/>
                                </f:facet>
                            </h:column>
                            <h:column binding="#{Page1.column2}" id="column2">
                                <f:facet name="header">
                                    <h:outputText binding="#{Page1.outputText4}" id="outputText4" value="Image/Text/CheckBox"/>
                                </f:facet>
                                <h:outputText binding="#{Page1.outputText7}" id="outputText7"/>
                                <h:graphicImage binding="#{Page1.image1}" id="image1" value="resources/prime.GIF"/>
                                <h:selectBooleanCheckbox binding="#{Page1.checkbox1}" id="checkbox1"/>
                            </h:column>
                        </h:dataTable>8. Now create a bean Called NumberBean
    9. Add properties oddRender,evenRender,primeRender of type boolean
    10.Add private method "isPrime" in Page1.java(default bean created by studio creator)
    * NumberBean.java
    * Created on July 16, 2005, 12:08 PM
    package webapplication11;
    * @author  user
    public class NumberBean {
         * Holds value of property oddRender.
        private boolean oddRender;
         * Holds value of property evenRender.
        private boolean evenRender;
         * Holds value of property primeRender.
        private boolean primeRender;
         * Holds value of property value.
        private int value;
        /** Creates a new instance of NumberBean */
        public NumberBean() {
         * Getter for property oddRender.
         * @return Value of property oddRender.
        public boolean isOddRender() {
            return this.oddRender;
         * Setter for property oddRender.
         * @param oddRender New value of property oddRender.
        public void setOddRender(boolean oddRender) {
            this.oddRender = oddRender;
         * Getter for property evenRender.
         * @return Value of property evenRender.
        public boolean isEvenRender() {
            return this.evenRender;
         * Setter for property evenRender.
         * @param evenRender New value of property evenRender.
        public void setEvenRender(boolean evenRender) {
            this.evenRender = evenRender;
         * Getter for property primeRender.
         * @return Value of property primeRender.
        public boolean isPrimeRender() {
            return this.primeRender;
         * Setter for property primeRender.
         * @param primeRender New value of property primeRender.
        public void setPrimeRender(boolean primeRender) {
            this.primeRender = primeRender;
         * Getter for property value.
         * @return Value of property value.
        public int getValue() {
            return this.value;
         * Setter for property value.
         * @param value New value of property value.
        public void setValue(int value) {
            this.value = value;
    private boolean isPrime(int prime)
            if(prime==2)
                return true;
            int factors=0;
            for(int i=1;i<=prime;i++)
                if(prime%i==0)
                    factors++;
                if(factors>2)
                    return false;
            return true;
        }11. Now add the NumberBean array as property in Page1.java
    12. You will see following methods and private variable in Page1.java file
         * Getter for property numberBeanArray.
         * @return Value of property numberBeanArray.
        public NumberBean[] getNumberBeanArray() {
            return this.numberBeanArray;
         * Setter for property numberBeanArray.
         * @param numberBean New value of property numberBeanArray.
        public void setNumberBeanArray(NumberBean[] numberBeanArray) {
            this.numberBeanArray = numberBeanArray;
         * Holds value of property numberBeanArray.
        private NumberBean[] numberBeanArray;
        13 Now modify the Constructor of Page1.java as below
             java.util.Vector results=new java.util.Vector();
                for(int i=1;i<=100;i++)
                    NumberBean bean=new NumberBean();
                    bean.setValue(i);
                    if(i%2==0)
                        bean.setEvenRender(true);
                        bean.setOddRender(false);
                    else
                        bean.setEvenRender(false);
                        bean.setOddRender(true);
                    if(isPrime(i))
                        bean.setPrimeRender(true);
                    else
                        bean.setPrimeRender(false);
              results.add(bean);
                numberBeanArray=(NumberBean[])results.toArray(new NumberBean[results.size()]);
           14. Now Change the JSP code as below
    <h:dataTable binding="#{Page1.dataTable1}" headerClass="list-header" id="dataTable1" rowClasses="list-row-even,list-row-odd"
                            style="left: 192px; top: 120px; position: absolute" value="#{Page1.numberBeanArray}" var="currentRow">
                            <h:column binding="#{Page1.column1}" id="column1">
                                <h:outputText binding="#{Page1.outputText1}" id="outputText1" value="#{currentRow['value']}"/>
                                <f:facet name="header">
                                    <h:outputText binding="#{Page1.outputText2}" id="outputText2" value="Number"/>
                                </f:facet>
                            </h:column>
                            <h:column binding="#{Page1.column2}" id="column2">
                                <f:facet name="header">
                                    <h:outputText binding="#{Page1.outputText4}" id="outputText4" value="Image/Text/CheckBox"/>
                                </f:facet>
                                <h:outputText binding="#{Page1.outputText7}" id="outputText7" rendered="#{currentRow['oddRender']}" value="Odd Number"/>
                                <h:graphicImage binding="#{Page1.image1}" id="image1" rendered="#{currentRow['primeRender']}" value="resources/prime.GIF"/>
                                <h:selectBooleanCheckbox binding="#{Page1.checkbox1}" id="checkbox1" rendered="#{currentRow['evenRender']}" value="Even Number"/>
                            </h:column>
                        </h:dataTable>JSF model really helps in various scenarios. Only thing we need is patience, Better understanding on Framework and some Investigative knowledge. :-)
    Thanks
    Sudhakar

  • I HAVE FOUND THE SOLUTION FOR THE FIRMWARE UPDA

    I'm sure most all of you have had this same problem I <strike>had:</strike> When you try to install the firmware update it says 'Plug in your player'!!? A very frusterating message mainly when your player is CLEARLY plugged in. So here's how I came about my solution!?I endlessly searched on this support forum, and I found that several people had found the solution several different ways!? Then other people have tried other's solutions, and it worked for some, but not all!?The forums have obviously pointed the problem at the computer, and not the player. They are halfly right, the problem isn't what you do on the player, but it's what they do to the player. I figured that there was something that the succesfull posters?did in the mean-time between posts that the unsuccesfull posters didn't do. It also didn't make sense, like others said was the problem, that it was Windows Media Player!? They said that you needed to roll it back, downgrade, to WMP 9 or 0. This made absolutely no sense to me because when I brought up WMP , and 0 for that matter, it recognized 'creative ZEN touch' under the 'synch' tab. After I found the solution, sorry for writing so long about how instead of just what it is: I just wanted to make it clear that this is the solution, I told my dad what it was!?He said that it made perfect sense because when my older brother tried to upgrade his firmware on his Dell MP3 Player, a message said that:It must be fully charged!?Beore you mess up your computer deleting all of these files and waste your time, try plugging your player into the wall at the same time it's plugged into the computer!? Then run your firmware update and bravo!? You are back in buisness!?Here is what to do in a little easier reading format:?. Plug your player into the wall.2. a. Plug your player into the computer.?b. (your player, at least my ZEN touch, should have the 'Docked' screen up. I'm not completely sure how this comes about, but I think that it'll appear that way while downloading the firmware update.)? If not, then try it anyways!3. Go to http://us.creative.com/support/downloads/?and search by product!4. Download the firmware update.?I hope that the moderators and admins find that this is, in fact, the solution!? Make this a sticky or something!? Your loss, not mine. :smileysurprised:

    for all of you that fall in this...
    sorry guys it was supposed to be a postponed April fools day joke!!           
    ... i believe you will forgive this little silly joke of mine       
    hehhe
    Markoul

  • I may have found the solution to the itunes not being able to connect

    This is only if you have the Norton Internet
    security system on your computer.
    a solution that works for me with windows XP. First restart the computer and don't start up itunes. Open Norton Internet Security and click on Status and Settings. Then click on personal firewall and then click on Configure, and click on the Programs tab. Scroll through the list of programs until you have goten to Apple itunes. Change the interntet Access to Permit All. Once you have saved these settings start up itunes. That worked for me. Please tell me if this helps anyone.
    I wish you all with other problems luck,
    & keep searching for the solution on the Internet.
    (Google) thats were I found my help & fixed my
    problem.
      Windows XP  
      Windows XP  

    for all of you that fall in this...
    sorry guys it was supposed to be a postponed April fools day joke!!           
    ... i believe you will forgive this little silly joke of mine       
    hehhe
    Markoul

  • Macs! I have found a solution for an u44m1p7 error.

    This might not be the cause for your problem, but have a look at the error log (shown when you press More Information after the update fails) and see if there is any mention of Adobe folder in Applications not being there to load the necessary patches.
    It relates to Applications/Adobe folder.
    Look at your folder, then see if it is actually a proper folder, and not a tiny Unix file (a dark grey icon). If it is little file delete it.
    Re install the photoshop or indesign app, and it should work.
    For non techies like me, the reason is that the patches need a home to go in. The computer is getting confused between a folder and a file with the same 'Adobe' name. Now you've deleted it the installer can create it's own in that place and put all the patches in there.
    Adobe team- please check this and let people know.
    If anyone else has this problem, share if it has worked.
    Here's a pic of what the particular error looks like, outlined in orange.

    Hi RebeccaWooWah,
    Please check "Applications" folder, you would see a file named "Adobe".
    Kindly delete the file, as it is corrupt.
    Create a folder "Adobe" in Applications folder, issue should be fixed.
    Thanks,
    Atul Saini

  • I have found a solution to 1 (of the many) battery problems!

    hey, for the last couple of weeks I have been experimenting with my ipod mini (4gb) last month it had battery problems (what's new?) and it shut itself off every couple of seconds even just minutes of taking it off charge! so I searched this web site for answers, everyone recommended re setting it, I decided to not reset it anyway (as many other people said it usually does nothing)also because my friend said he had the same problem and in the end it just fixed for no particular reason! my brothers friend also said this, so I decided to 'test' my battery, for about 3 days in a row I used it everyday and charged every night, all that happened was the same thing, it said it had no battery power left, so next... I left if for about 5 days, charged it and since then it has not stopped.
    so in the end its kinda left to common sense, don't charge it every single day! let it sit for about 2-3 days every week or so... my experiment may not be correct... but it worked for me, if it doesn't work for you then it may be something else that fixed it, sorry if this doesn't help...
    good luck!

    Probably because you were giving advice about the battery that conflicts with what is in Apple's own support pages. There is usually a link at the bottom of a locked post that gives a specific reason for the closure, but the link in your message seems to be broken, so this is just speculation.
    Apple publishes a web page devoted to iPod batteries at http://www.apple.com/batteries/ipods.html

  • How to Show Different set of  Blob images in every page

    Hi i am using Crystal Report Server XI RAS Embedded Edition to built Dynamic Reports.
    Now i  have two datasets
    1. Main query with imageid field
    2. list of image blobs.
    this two datasets are linked with imageid  field and binded to ReportClientDocument.
    i have to show different image fields in every page of the report.  this images are differ in width and heights.
    i am able to show a single constant image field object from blob database field.
    but i could not able to find the solution to show different set of multiple images in different pages of the report.
    is there any formulas can be written or kindy give me a solution to achieve this.
    Regards,
    Padmanaban V
    Edited by: Padmanaban Viswanathan on Mar 15, 2010 11:59 AM

    See RAS samples [here|https://wiki.sdn.sap.com/wiki/display/BOBJ/NETRASSDK+Samples]. Look for "NET-CS2003_RAS-Managed_BE115_Add_Image" or "NET-VB2003_RAS-Managed_BE115_Add_Image-From-File".
    Ludek

  • Variance Scaling in Query and Web Template Showing Different Results

    Hi experts,
    I have the following problem - variance scaling in my query and web template are showing different results.
    My variance in column is set as follows:
    Formula: NODIM(A % B)
    Scaling Factor: 1
    I have a structure in row that uses Scaling Factor of 1,000.
    Let say the value of Column A is 120 and Column B is 100.
    When I execute the query, it will show 0.02
    However, when I execute the web template it will show the correct scaling i.e. 20.
    May I know what can I do to correct above scaling error?
    Thank you!

    You can not remove the scalling factor, but once you check the checkbox below the dropdown menu, the scalling factor will go away.
    I checked at my end and when I set the scalling fact as 1, I was getting 9.9% while I was expecting 9900%. When I removed the scalling factor I started getting 9900%.
    I would let you know if I came across anything else.
    What about the unit of Column A and B. Are they same or different?
    - Danny
    Edited by: Danny Matt on Jun 22, 2009 1:54 PM

  • Found a Solution to crackling and popping on XFI Sound ca

    I have tried many solution attempts found on this forum and nothing seemed to work. I have updated all of the drivers. I have reinstalled several times along with reboots and after all this I just decided to try on last thing and here it is and it worked for me.
    Well after testing this I have found that setting the sample format rate and bit depth to be use in shared mode to 24 bit, 96000Hz (Studio Quality) That the crackling and popping has gone away. I have tested this in a game called Jericho that did it all the time and the game runs smooth and the audio is crisp and clear. I also had problem playing any audio and moving the mouse over icons and the sound would have serious crackling. This has also gone away. The sound in general is a lot better then before. It is crisp and clear. I highly suggest that you check the settings. Go to Control Panel then Sound . Right click on speakers and select Properties . Click on Advanced and in the Default Format change this to 24 bit, 96000 Hz (Studio Quality). This should get rid of all of the crackling and popping. This has worked for me. I have hooked up my speakers direct not by fiber optic. I am guessing that if one used fiber optic then you might be able to use 24 bit, 92000 Hz (Studio Quality) . But I would definitely try adjusting the settings here to try and fix the problem. I have gone back and forth on these settings and it is only clear on 24 bit, 96000 Hz (Studio Quality) . Thanks to you all on this forum for you help in this matter I know this is only my third post but I have been reading this forum for solutions for a week now and have found a solution that worked for me that I have not read yet. I hope this helps everyone or at least some. Godspeed.

    Here are more of my findings after some more testing. I know that I have found the XFI card to work on my vista machine at 24 bit 96000 Hz, but here is something that tells me there is definitely something wrong with these new drivers for XFI cards. Today I wanted to try going back to the HD audio card that came with my Asus Crosshair motherboard. It has an HD Supreme FX PCI Express card. I am assuming this is equivalent to the Creative Audigy 2 ZS card that I also have. I would assume that the XFI card is a step above the HD Supreme FX card that comes with the motherboard. So here are my findings. After installing the card and the Vista drivers for the HD Supreme FX card I ran into zero problems. I switched the settings to 24 Bit 92000 Hz, this is the setting I wanted to use for the XFI card and it would crackle and pop. The funny thing is the Audigy 2 ZS card that I have had absolutely no problem in running 24 Bit 92000 Hz in Windows XP. So you can not tell me that the XFI Card is incapable of running 24 Bit 92000 Hz. There is no way that you would downgrade the better card of the two. I also know from other users that the XFI card has no problem running 24 Bit 92000 Hz in Windows XP. This is a Vista issue that is narrowed down to the drivers. Therefore the drivers need to be reprogrammed. How is it that, Asus can have a card designed or design an audio card along with drivers that work flawlessly in Vista and am audio component manufacturer like Creative just can not seem to get it right Any answers Creative I still had problems with the audio in the Game Jericho with the XFI card but no problems occurred with the HD Supreme FX card that came with the Crosshair board. So I know it is not a problem with the game. The problem lies in the drivers with the XFI card. The problem that I was having incase you all are curious is. In the game you get to a point where you are able to switch between characters. The crackle would occur when jumping into the character Delgado. The audio would crackle and pop. So I would jump out and into another character and the sound would still crackle and pop until you took the first step and then it would go away. It did not matter which character you would jump into from Delgado. The only sound issues where with Delgado. I thought it was in the game after I assumed I had found a fix. But I was wrong because I had absolutely no issues on any character or at any point in the game with the Supreme FX card. I only had these issues with the XFI Card. The funny thing is the game recommends the XFI card.

  • Summary report to show all the software components and version installed

    We are using 64bit Windows 2003 and Hyperion Planning and Essbase in 2 separate servers. I am not sure whether Windows can have a summary report to show all the software components and version installed and show it is 32bit or 64bit version installed?
    Thanks!

    Refer steps here to delete SC file.:
    http://support.apple.com/kb/TS2363
    Then proceed to repair your QuickTime. START / CONTROL PANEL / ADD n REMOVE PROGRAMS / highlight QUICKTIME and click CHANGE then REPAIR.

  • I am still having issues with the TOC. I finally got several chapters and sections to show different pictures in the TOC, but have spent hours trying to figure out how to repeat it. This should be so simple. Is there an update? Please help us Apple.

    I am still having issues with the TOC pictures. I got several chapter/section photos to show up, but can't seem to repeat this success. It is some mystery that happened during a time that I had practically given up. This should be such a simple thing. Drag and place a picture into the placeholder and it shows up in the TOC....right? Help, help help! want to get this thing done and it's taken two days of work just get some of the photos to show up. I am going to have to publish this ibook with no photos in several sections.....why can't this be simple? I have even had someone else spend hours trying to figure this out. This software is such a GREAT idea....come on...help with this little part of it.

    I had the same problem myself. I got to the point where I couldn't replace the photo, of a new chapter, in the TOC. What I did was to duplicate an existing chapter that was working and was able to replace it's TOC's photo. I also found that if you try different areas of the photo you can sometimes get it to replace correctly. For example, instead of dragging the new photo to the middle of an existing photo, try dragging it to the right top corner.

  • Trying to make my old 3G iphone an iPod for my 4 year old grandson. I have found lots of ways to do so online. PROBLEM: when I charged it and turned it on it only flashes many different languages. Will only allow me to call emergency numb

    Trying to make my old 3G iphone an iPod for my 4 year old. I have found lots of ways to do so online. PROBLEM: It's been off for 2 years. When I charged it and turned it on it only flashes many different languages. Will only allow me to call emergency number. Any ideas how I can log on to it?

    Im pretty sure what you are looking at is Set up Assistant where it shows different languages on the slider. If I am right then just slide to unlock and follow the prompts to choose your language, country etc.

  • I have a problem while typing in my MacBook pro. it is showing different characters when i type. for example: qw`e§r]t[y=   this is how when we type "qwerty|" can anyone help me pls?

    I have a problem while typing in my MacBook pro. it is showing different characters when i type. for example: qw`e§r]t[y=   this is how when we type "qwerty|" can anyone help me pls?

    You could just try changing your Input Sources under System Preferences>Language & Text:
    But I kind of doubt that's going to work. It may be a hardware problem or a system problem. If you take it into Apple they might be able to determine which and might advise a reinstallation of System software. I would take it to an Apple Store or an AASP but, first, make sure that you have a backup just in case they suggest a clean install of the system.
    Good luck,
    Clinton

  • I need help with color pallette in iPhoto 11. I have created a book and would like to use a different color background than those given in "background." I have found the color palettes but can't seem to incorporate them into my backgrounds palette.

    I need help with color pallette in iPhoto 11. I have created a book and would like to use a different color background than those given in "background." I have found the color palettes but can't seem to incorporate them into my backgrounds palette.

    That is not a feature of iPhoto - suggest to Apple - iPhoto Menu ==> provide iPhoto feedback.
    Additionally I have no idea what you are saying here
    I have found the color palettes but can't seem to incorporate them into my backgrounds palette.
    And it always helps for you to dientify the version of iPhoto that you are using
    LN

  • Hi skydiver, I have ios7.4, I tried two different USB ports and it still doesn't show,up on my desktops in my computer as iPad so I can't click it. If it was there I would open and see all my photos, and YES it ask me DO I trust this computer! several tim

    Hi skydiver, I have ios7.4, I tried two different USB ports and it still doesn't show,up on my desktop in my computer as iPad so I can't click it. If it was there I would open and see all my photos, and YES it ask me DO I trust this computer! several times.
    The apple tech on the phone, went to my control,panel
    Went to my devices. Original iPad showed up,there In red and then he had me go,to apple website, download something and it said it could configure to my computer.
    Is,finally answer,to me was go to the apple care,one on one appointment, and it's my "software"
    A man I know told me "Apple at store, won't be able to do,anything for me"
    That's not very positive.
    What else? Can't I download iPad drivers,into my computer?

    iPad not appearing in iTunes
    http://www.apple.com/support/ipad/assistant/itunes/
    iOS: Device not recognized in iTunes for Mac OS X
    http://support.apple.com/kb/TS1591
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    iTunes for Windows: Device Sync Tests
    http://support.apple.com/kb/HT4235
    IOS: Syncing with iTunes
    http://support.apple.com/kb/HT1386
    Apple - Support - iPad - Syncing
    http://www.apple.com/support/ipad/syncing/
    iTunes 10.5 and later: Troubleshooting iTunes Wi-Fi Syncing
    http://support.apple.com/kb/ts4062
     Cheers, Tom

Maybe you are looking for