[Solved] Nested setActionListener not working correctly.

Hi,
I'm having a situation where I have to load some xml and display the values on the screen. The results can be filtered by selecting a value in a selectOneChoice component. Please consider the example below, which is a reproducible scenario, just to show the 'wrong' (?) behavior.
The ValueChange bean initialize some lists and handles the selection change of the selectOneChoice component on the .jspx page. The onValueChange method will 'filter' the data everytime a selection change. The filterItems method will clear the personItems list and add a new object to the list, depending on the selected value:
public class ValueChange {
    private List someSelectItems;
    private String selectedValue;
    private List personItems;
    private Person person1 = new Person("1", "Larry", "Ellison");
    private Person person2 = new Person("2", "Bill", "Gates");
    private Person person3 = new Person("3", "Steve", "Jobs");
    public ValueChange() {
     System.out.println(this.getClass() + " Init");
     this.someSelectItems = new ArrayList();
     someSelectItems.add(new SelectItem("1", "Oracle"));
     someSelectItems.add(new SelectItem("2", "MicroSoft"));
     someSelectItems.add(new SelectItem("3", "Apple"));
     this.personItems = new ArrayList();
     this.personItems.add(person1);
    public List getSomeSelectItems() {
     // Fill this list.
     return someSelectItems;
    public void onValueChange(ValueChangeEvent valueChangeEvent) {
     System.out.println("Current Class: ValueChange - Current Method: onDocumentLanguageValueChange");
     if (valueChangeEvent != null) {
         String vValue = valueChangeEvent.getNewValue().toString();
         filterItems(vValue);
    public void setSelectedValue(String selectedValue) {
     this.selectedValue = selectedValue;
    public String getSelectedValue() {
     return selectedValue;
    private void filterItems(String pValue) {
     this.personItems.clear();
     if (pValue.equals("1")) {
         this.personItems.add(person1);
     } else if (pValue.equals("2")) {
         this.personItems.add(person2);
     } else if (pValue.equals("3")) {
         this.personItems.add(person3);
    public void setPersonItems(List personItems) {
     this.personItems = personItems;
    public List getPersonItems() {
     return personItems;
}The person class is just a simple bean containing some attributes + getters and setters:
public class Person {
    private String id;
    private String firstname;
    private String lastname;
    public Person(String pId, String pFirstname, String pLastname) {
     this.id = pId;
     this.firstname = pFirstname;
     this.lastname = pLastname;
    public void setId(String id) {
     this.id = id;
    public String getId() {
     return id;
    public void setFirstname(String firstname) {
     this.firstname = firstname;
    public String getFirstname() {
     return firstname;
    public void setLastname(String lastname) {
     this.lastname = lastname;
    public String getLastname() {
     return lastname;
}On the start page of the example, the selectOneChoice will be rendered + the data matching to the selected item. I'm using a commandLink to open a detail page. The commandLink contains a nested af:setActionListener which should set the whole current person instance to a sessionScope variable. (But his seems to fail.]
<?xml version='1.0' encoding='windows-1252'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:af="http://xmlns.oracle.com/adf/faces"
          xmlns:afh="http://xmlns.oracle.com/adf/faces/html">
  <jsp:output omit-xml-declaration="true" doctype-root-element="HTML"
              doctype-system="http://www.w3.org/TR/html4/loose.dtd"
              doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
  <jsp:directive.page contentType="text/html;charset=windows-1252"/>
  <f:view>
    <afh:html>
      <afh:head title="myPage">
        <meta http-equiv="Content-Type"
              content="text/html; charset=windows-1252"/>
      </afh:head>
      <afh:body>
        <h:form id="myPageForm">
          <h:panelGrid>
            <af:selectOneChoice id="selectValue" autoSubmit="true" value="1"
                                valueChangeListener="#{valueChange.onValueChange}">
              <f:selectItems value="#{valueChange.someSelectItems}"/>
            </af:selectOneChoice>
            <af:panelList partialTriggers="selectValue">
              <af:forEach items="#{valueChange.personItems}" var="person">
                <af:commandLink text="#{person.firstname} (#{person.id})"
                                action="showdetail">
                  <af:setActionListener from="#{person}"
                                        to="#{sessionScope.person}"/>
                </af:commandLink>
              </af:forEach>
            </af:panelList>
          </h:panelGrid>
        </h:form>
      </afh:body>
    </afh:html>
  </f:view>
</jsp:root>The detail page should just read the firstname of the person instance on sessionScope, but it always shows the same name.
<?xml version='1.0' encoding='windows-1252'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:af="http://xmlns.oracle.com/adf/faces"
          xmlns:afh="http://xmlns.oracle.com/adf/faces/html">
  <jsp:output omit-xml-declaration="true" doctype-root-element="HTML"
              doctype-system="http://www.w3.org/TR/html4/loose.dtd"
              doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
  <jsp:directive.page contentType="text/html;charset=windows-1252"/>
  <f:view>
    <afh:html>
      <afh:head title="myDetailPage">
        <meta http-equiv="Content-Type"
              content="text/html; charset=windows-1252"/>
      </afh:head>
      <afh:body>
        <h:form>
          <af:panelForm maxColumns="1">
            <af:outputText value="#{sessionScope.person.firstname}"/>
            <af:commandLink text="Back" action="back"/>
          </af:panelForm>
        </h:form>
      </afh:body>
    </afh:html>
  </f:view>
</jsp:root>
<?xml version="1.0" encoding="windows-1252"?>
<!DOCTYPE faces-config PUBLIC
  "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
  "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
<faces-config xmlns="http://java.sun.com/JSF/Configuration">
  <managed-bean>
    <managed-bean-name>valueChange</managed-bean-name>
    <managed-bean-class>be.contribute.valuechange.view.beans.ValueChange</managed-bean-class>
    <managed-bean-scope>request</managed-bean-scope>
  </managed-bean>
  <application>
    <default-render-kit-id>oracle.adf.core</default-render-kit-id>
  </application>
  <navigation-rule>
    <from-view-id>/myPage.jspx</from-view-id>
    <navigation-case>
      <from-outcome>showdetail</from-outcome>
      <to-view-id>/myDetailPage.jspx</to-view-id>
    </navigation-case>
  </navigation-rule>
  <navigation-rule>
    <from-view-id>/myDetailPage.jspx</from-view-id>
    <navigation-case>
      <from-outcome>back</from-outcome>
      <to-view-id>/myPage.jspx</to-view-id>
    </navigation-case>
  </navigation-rule>
</faces-config>I can always send this sample application by mail, just drop a reply or send me a message (koen [dot] verhulst [at] contribute [dot] be )
JDeveloper 10.1.3.3
Thanks in advance,
Koen Verhulst

It seems that it has something to do with the fact that I set the value of the selectOneChoice to 1.
<af:selectOneChoice id="selectValue" autoSubmit="true" value="1"
                                valueChangeListener="#{valueChange.onValueChange}">
              <f:selectItems value="#{valueChange.someSelectItems}"/>
</af:selectOneChoice>I modified the value attribute to:
value="#{valueChange.selectedValue}"Where selectedValue is an attribute in my ValueChange class, containing a default value. Getters and setters are also generated.
private String selectedValue = "1"When I run the application again, after making these changes, I'm able to pass the correct data to the detail page. But: as soons as I select the 'default value' in the selectOneChoice, no valueChange is detected and thus my data does not gets filtered.
Since the valueChange instance is a request-scoped bean, a value change is not detected because the current value equals the default value (question: am I right here?).
Setting the bean to session scope let the example fully works.
Although it works, I think it should be better to let the bean on request scope and stored a 'selected' value attribute on the sessionScope.
Thanks,
Koen Verhulst

Similar Messages

  • [SOLVED]find command not working correctly new version of findutils...

    After upgrading my findutils from 4.2.33-1 to 4.4.0-1, it is not working the way it used to. I downgraded to the old one and it is working fine again. However, I am wondering why the newer version can't do what I want it to...
    Typically I run the following script to apply mp3gain to my music collection (albums and individual songs):
    #!/bin/bash
    echo Albums...
    find . -mindepth 3 -iname '*.mp3' -execdir mp3gain -k -a {} +
    echo Single tracks...
    find . -maxdepth 2 -iname '*.mp3' -exec mp3gain -k -r {} +
    On the old version, for the albums, the "find" function works as expected by examining the entire album before applying gain. With the new findutils version, the albums are being analysed song-by-song. I suppose since the new version of findutils, there is just a different method to do what I wanted before with -execdir. Does anyone know how to do it on the new version?
    Last edited by tony5429 (2008-07-19 06:29:41)

    Cool. Thanks for the suggestion. I ended up going with...
    #!/bin/bash
    echo Albums...
    for album in */*
    do
    cd "$album" > /dev/null 2>&1
    if [ $? = 0 ]
    then
    mp3gain -k -a *.mp3
    cd ..
    cd ..
    fi
    done
    echo Single tracks...
    find . -maxdepth 2 -iname '*.mp3' -exec mp3gain -k -r {} +
    exit 0

  • [solved] NFS client will not work correctly

    I have all my $HOME on an NFS Server. So long I used suse and debian, now I want switch to arch but the nfs-client ist not working correctly:
    I start "portmap nfslock nfsd netfs" over rc.conf. When I do a "rpcinfo -p <ip-arch-system>" I got the following
    stefan:/home/stefan # rpcinfo -p 192.168.123.3
       Program Vers Proto   Port
        100000    2   tcp    111  portmapper
        100000    2   udp    111  portmapper
        100021    1   udp  32768  nlockmgr
        100021    3   udp  32768  nlockmgr
        100021    4   udp  32768  nlockmgr
        100003    2   udp   2049  nfs
        100003    3   udp   2049  nfs
        100003    4   udp   2049  nfs
        100021    1   tcp  48988  nlockmgr
        100021    3   tcp  48988  nlockmgr
        100021    4   tcp  48988  nlockmgr
        100003    2   tcp   2049  nfs
        100003    3   tcp   2049  nfs
        100003    4   tcp   2049  nfs
        100005    3   udp    891  mountd
        100005    3   tcp    894  mountd
    As you see "status" is missing, so the statd is not running. It sould look like the result on my suse box:
    stefan:/home/stefan # rpcinfo -p 192.168.123.2
       Program Vers Proto   Port
        100000    2   tcp    111  portmapper
        100000    2   udp    111  portmapper
        100024    1   udp  32768  status
        100021    1   udp  32768  nlockmgr
        100021    3   udp  32768  nlockmgr
        100021    4   udp  32768  nlockmgr
        100024    1   tcp  35804  status
        100021    1   tcp  35804  nlockmgr
        100021    3   tcp  35804  nlockmgr
        100021    4   tcp  35804  nlockmgr
    There is the "status" line and so the statd is running.
    How can I fix that problem, so that statd ist running on my arch box too?
    Last edited by stka (2007-06-10 15:59:48)

    The Problem ist solved.
    I use ldap for authentication. During the setup of the ldapclient I copied the nsswitch.ldap to nsswitch.conf. But the line for "hosts:" was:
    hosts:          dns ldap
    but in my dns ist no localhost entry. After I changed this line to:
    hosts:          files dns ldap
    everything was ok. The statd is now running and I can start to migrate to archlinux ;-)

  • If statement within a view is not working correctly ?

    Hi all,
    maybe i am wrong but i think the if statement within a view is not working correctly. See code down below.
    I would like to use the Hallo World depending on the page attribute isFrame with or without all the neccessary html tags. Therefore i have embedded the htmlb tags in an if statement. But for any reason if isframe is initial it isn't working. It would be great if anybody could help me.
    <%@page language="abap"%>
    <%@extension name="htmlb" prefix="htmlb"%>
    <% if not isframe is initial. %>
      <htmlb:content design="design2003">
         <htmlb:page title = "Top Level Navigation view">
    <% endif. %>
    hallo world
    <% if not isframe is initial. %>
         </htmlb:page>
      </htmlb:content>
    <% endif. %>
    thanks in advance and best regards
    Matthias Hlubek

    Matthias,
    The short answer: your example is <b>NOT</b> going to work. The long answer will probably 5 pages to describe. So first let me rewrite the example so that it could work, and then give a short version of the long answer. Do not be disappointed if it is not totally clear. It is rather complicated. (See the nice form of IF statements that are possible since 620.)
    <%@page language="abap"%>
    <%@extension name="htmlb" prefix="htmlb"%>
    <% if isframe is <b>NOT</b> initial. %>
    <htmlb:content design="design2003">
      <htmlb:page title = "Top Level Navigation view">
        hallo world
      </htmlb:page>
    </htmlb:content>
    <% else. %>
      hallo world
    <% endif. %>
    So why does your example not work? Let us start with a simple tag:
      <htmlb:page title = "Top Level Navigation view">
      </htmlb:page>
    Now, for each tag, we have effectively the opening part (<htmlb:page>), an optional body, and then the closing part (</htmlb:page>). We are now at the level of the BSP runtime processing one tag. What the runtime does not know, is whether the tag wants to process its body or not. Each tag can decide dynamically at runtime whether the body should be processed. So the BSP compiler generates the following code:
      DATA: tag TYPE REF TO cl_htmlb_page.
      CREATE OBJECT tag.
      tag->title = 'Top Level Navigation view'.
      IF tag->DO_AT_BEGINNING( ) = CONTINUE.
      ENDIF.
      tag->DO_AT_END( ).
    You should actually just debug your BSP code at ABAP level, and then you will immediately see all of this. Now, let us mix in your example with our code generation. First you simplified example:
    <% if isframe is NOT initial. %>
      <htmlb:page title = "Top Level Navigation view">
    <% endif. %>
    <% if isframe is NOT initial. %>
      </htmlb:page>
    <% endif. %>
    And then with our generated code. Look specifically at how the IF/ENDIF blocks suddenly match!
    if isframe is NOT initial.
      DATA: tag TYPE REF TO cl_htmlb_page.
      CREATE OBJECT tag.
      tag->title = 'Top Level Navigation view'.
      IF tag->DO_AT_BEGINNING( ) = CONTINUE.
    endif.
    if isframe is NOT initial.
      ENDIF.
      tag->DO_AT_END( ).
    endif.
    You can see that your ENDIF statements are closing IF blocks generated by the BSP compiler. Such a nesting will not work. This is a very short form of the problem, there are a number of variations, and different types of the same problem.
    The only way to solve this problem, is probably to put the body into a page fragment and include it like I did above with the duplicate HelloWorld strings. But this duplicates source code. Better is to put body onto a view, that can be processed as required.
    brian

  • Function keys are not working correctly

    I've been looking all over the various threads and I can't find an answer that solves my problem.
    Here are the details:
    I bought the computer in the U.S. where I live.
    I have a iMac 2.4GHz intel Core 2 Duo  EMC 2133 with a 20" screen. Bought it new in February 2008.
    I have Mac OS X 10.5.8  (I am waiting for my order for OS Snow Leopard to come in!!)
    I have been using a wireless mouse and Keyboard (Love not having cords!)
    Recently, my wireless keyboard got a short and quit working. I went down to the apple store and got a new wireless keyboard.
    I had the computer with me at the genius bar so, yes, the apple employee saw exactly what I have.
    I took it all home got the thing all put back together and got the new keyboard paired up and working with the computer.
    Here are the problems:
    Went to go use the function keys while using iTunes and found they weren't working properly. The F10, F11 and F12 do not control the volume of sound as the keyboard indicates they would, they instead activate dashboard, spaces, and application windows. 
    Following the advice of other threads, I looked over in the system preferences and made sure the "Use all F1, F2 etc." box was unchecked (it was unchecked), things still didn't work.
    I tried the fn key but it appears to not work at all it has no effect on the functioning of the function keys.
    I went under keyboard shortcuts in system preferences and found the F10, F11 and F12 keys, it confirms that those keys control spaces, dashboard and application windows as they are performing but shows no options to either reassign to volume control (as marked on the keyboard) or make the fn key work.
    I've gone back and forth trying various combinations of checked and unchecked boxes to see if anything would work, so far I've come up with nothing.
    A couple more important or interesting facts:
    Yes I have turned off and taken the batteries out of the old keyboard. My bluetooth connection currently shows it as disconnected.
    I have restarted the computer.
    One thing I find odd; when I go under preferences and go to Keyboard and Mouse when I go under the section "Bluetooth" it shows Bluetooth mouse with the name of the mouse and the battery level. BUT nothing is showing up under bluetooth Keyboard, I can't figure out how to change this and don't know if it is contributing to the problem.
    When I go under the bluetooth logo on the top bar I find the mouse and both keyboards referenced, the old keyboard is shown as disconnected and the other two are connected. I have tried to update the device's name but it doesn't seem to let me.
    I have double clicked on the device under bluetooth and it shows the new keyboard as discoverable, paired and connected. Hence, I am using the new keyboard to write this inquiry.
    Please, any assistance would be of great help. I have tried to be thorough in order help narrow the possible problem. Thanks!!

    Hendry
    Just thought I'd let you know.  Our suspicions were correct, it was the OS. After I installed Snow Leopard (10.6.8) all the problems were corrected.  I also updated the RAM from 1 gb to 6 gb. The mac is working all around better. Sorry it took so long to get back to everyone. My superdrive had pooped out. Rather than replace it I got an external drive from OWC connected with firewire 800.  So far everything is running very well, as far as I can tell this external drive is better than the original superdrive. My superdrive has always acted funny, infact I returned the first mac I got after a week because its superdrive was also malfunctioning. Anyway, all that to say everything seems to be fully functioning again.
    Roy
    Re: Function keys are not working correctly 

  • LaserJet Pr0 200 color MFP M276nw Touch Screen not Working correctly

    Hello, I'm having an issue with a LaserJet Pr0 200 color MFP M276nw Touch Screen not Working correctly. I have followed the instructions to reset the printer, but now am unable to select 'English' as my language because every time I select the 'English' option 'Spanish' is selected. I am then given two options to select 'Si' or 'No' both of which can not be selected on the touch screen?
    Anybody know of a way round this?

    Hi @dnhowes ,
    I see that you are having issues with the touch screen not working correctly. I will do my best to help you.
    Make sure the printer is connected directly to a wall outlet. (don't use a power hub or a surge protector) This ensures the printer is receiving full power and may help this situation.
    Was it the Nvram reset back to factory settings that you tried or a hard reset?
    Try selecting the option on the display a little higher above the icon to see if that helps. Some touch screens are finicky.
    I find that on the Lab printers when I am selecting different menus.
    If the issue continues, please call our technical support at 800-474-6836 for further assistance. If you live outside the US/Canada Region, please click the link below to get the support number for your region.
    http://www8.hp.com/us/en/contact-hp/ww-phone-assist.html
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Screen Not Working Correctly- Horizontal Lines

    For the past few weeks, when I open my computer, sometimes the bottom half of my screen is just a lot of lines or is not working correctly. Sometimes if I tilt the screen enough, it will go away. But I don't know what to do!

    First step in user troubleshooting is to turn the phone off and back on. If that doesn't help, then a reset. Hold the sleep/wake and home buttons together until you see the Apple logo and then release. The phone will restart. If this does not solve it, then a restore from backup, and finally if necessary, a restore as a new device.
    You do not indicate what iPhone version you have. You also do not say if the phone has been dropped or any user damage to the screen. If anything, you can make an appointment with the Apple Store Genius bar to get the hardware checked.

  • Some time tech pad not working correctly

    I am buy a HP Pavilion laptop from awok.com. Some time mouse teach pad not working correctly some time open windows 8.1 time bar and some time i am using mouse teach pad then automaticly come right click popup menu coming some time i am try to scrol the page using mouse pad then automaticly Select all from the page so please help me

    Hello @BABUMON ,
    Thank you for visiting the HP Support Forums and Welcome. I have read about your HP Notebook and mouse freezing. Here is a document on how to troubleshoot the mouse and Touchpad sensitivities.
    If you will go to the section on Adjusting TouchPad or ClickPad pointing sensitivities it should help resolve the issue.
    I would be happy to assist if needed as there are many models of HP Notebooks, I would need the model number.
    How Do I Find My Model Number or Product Number?
    Please respond with which Operating System you are running:
    Which Windows Operating System am I running?
    Please let me know.
    Thanks.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • Keyboard not working correctly after updating to 8.1 64bit pro.

    Keyboard not working correctly after updating to 8.1 64bit pro.
    After I updated, everything seemed ok and then all of the sudden I rebooted and only the f1 – f12 row would work. I resorted to resorted to unplugging and removing the battery and it would work for a short amount of time. This has been reported on other laptops as well, see here.
    http://answers.microsoft.com/en-us/windows/forum/w​indows8_1-hardware/windows-81-keyboard-problem-cou​...
    I think it can be solved with a driver update from hp or the keyboard builder but none is online.

    Hi,
    Please put the units product no. in the link and check if your PC is tested by HP with Windows 8.1
    http://www8.hp.com/us/en/ad/windows-8/upgrade.html
    Let me know if you need more help.
    I am an HP employee.
    Make it easier for other people to find solutions, by marking my answer “Accept as Solution” if it solves your problem.
    ***Click on “Kudos” STAR to say thanks!***

  • Canon MG3550 is not working correctly

    Hello,
    I have recently bought Canon MG3550. I installed the driver etc but the printer is not working correctly. Sometimes it prints without any issues but other times it:
    - does not pick the printer - saying it's offline even though it's not (this is from laptop, iPad, phone...not just from one device)
    - does not print - the error message appears after a while saying that the printer is not responding
    - prints half of the page...or just picks up a paper but doesn't print at all
    I tried to de-install and re-install the driver etc. but it did not help. The printer is still behaving the same unpredictable way.
    Do you have any ideas how to solve it? It is a faulty device or am I doing something wrong? 
    Thank you

    Your tags show iPad. You need the iPad 3 or newer in order to have Siri. What iPad do you have?
    There are a number of apps that are compatible with Word....Documents to Go, Pages, Quick Office Pro .... You need an app that will read, save and Word files on the iPad and if you don't have such an app, all that you can do is email the file and read it in the email. You will not be able to save or edit the files.
    After you download one of this apps, you can use email, DropBox, and IOS file sharing in order to transfer the documents back and forth. You can use iCloud as described above with Pages or any other app that works with iCloud.
    Read this to learn more about file sharing.
    http://support.apple.com/kb/HT4094

  • Three Point Edit not working correctly :(

    Hi there,
    first of all I'd like to say thank you Adobe for listening to your users. And I hope this one gets noticed right away....:
    It appears that 3 point editing ist not working correctly.
    Right now I'm editing a video and I heavily rely on 3 point editing.
    I have quite a lot XDCAM EX 50i clips which are all in one sequence that is used as source.
    Coming from tape workflows I really don't like clicking clip after clip...I need to edit
    Now fortunately one can choose to either have a sequence as source edited in nested or as individual tracks. Very nice!
    Very bad is that 3 point editing only works when "nested" is activated. Again, very bad!
    As soon as I want to use my source sequence with its individual tracks and hit (.) or (,) just nothing happens. Hmpf!
    Come on guys, that is essential editing stuff, not fancy speech detection blabla...sorry but this is mega-annoying right now....
    It says "Pro" right after "Premiere". So please make it pro! Professionals need ROCK SOLID essential functions.
    Make us editors happy having switched from Avid/FCP etc.
    Make essential stuff rock solid. That's what makes an app "pro".
    Cheers and please mind my harsh words. Just a little upset right now. (I know that's not pro either )

    bmfm_ wrote:
    I have quite a lot XDCAM EX 50i clips which are all in one sequence that is used as source.
    Now fortunately one can choose to either have a sequence as source edited in nested or as individual tracks. Very nice!
    Very bad is that 3 point editing only works when "nested" is activated. Again, very bad!
    Hi bmfm,
    I think I know what's going on. The behavior you describe happens when you try to edit back into your original sequence. Can try making a new sequence to cut your selects into? See the page in help for details: http://helpx.adobe.com/premiere-pro/using/edit-sequences-loaded-source-monitor.html
    Thanks,
    Kevin

  • Blackberry Curve 8520 not working correctly

    My Blackberry Curve 8520 is not working correctly. It has worked on and off for about 2 days now.
    The first thing to stop was the media files - at first it said the SD card was inserted, but couldn't find any files. I've tried repairing the card. Then it is said there was no card inserted. Have taken out and re-entered the card, and formatted it. It now says there is no card inserted again. 
    Also, Whatsapp and BBM are not working. I can open them, and can type a message, and press send, but no message actually sends. 
    Plus the screen keeps freezing, will only work again through a battery pull. 
    I've had the phone for about 3 months.
    Please help!

    Hello Sarahhelen,
    I would suggest backing up and doing a clean reload of the BlackBerry® device software as shown here: http://btsc.webapps.blackberry.com/btsc/KB11320. Please test before restoring any data to the device.
    If this resolves the issue do a selective restore of essential data (Address Book, Calendar, Task, Memos, BBM contacts etc.)
    How to use BlackBerry® Desktop Software to restore data to a BlackBerry® smartphone from a backup file
    http://btsc.webapps.blackberry.com/btsc/KB10339.
    If the issue still persists after the reload, further investigation might be required. To help further diagnose the cause, contact your wireless service provider or BlackBerry® Technical Support Services for further review and support.
    Thank you.
    -HB
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • My laptop sound is not working correctly what to do?

    HP Pavilion DV6-3031tx os is windows 7 64 bit and i have taken my laptop in dubai can i get the warrant in india.?

    Hi,
    Please do NOT post many threads for same problem. What do you mean "not working correctly" ?
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • HP PAVILION DV6 6154FAN NOT WORKING CORRECTLY

    MY LAPTOP FAN IS NOT WORKING CORRECTLY A STARTUP MESSAGE COMES FAN NOT WORKING CORRECTLY GO TO SUPPORT FORUM.
    MY PRODUCT WARRANTY IS OVER.
    PLEASE ADVICE ME WHAT TO DO.
    SEEKING FOR KIND SOLUTION.

    Try cleaning up the cooling module. Blow compressed air into the fan grill. Test the laptop after the fan and heatsink is clean.
    If cleaning the cooling module doesn't help, you'll have to replace the fan. This requires complete laptop disassembly.
    In order to replace the fan you'll have to remove the motherboard.
    Here's the official service manual which could be useful.
    By the way, there are two different types or cooling modules. One for AMD processors and another one for Intel processors (page 93 in the service manual).
    If you decide to replace the fan, it's not necessary to replace the entire cooling module assembly (heatsink and fan). It's possible to replace just the fan which can be purchased on eBay.
    ****Click the White Kudos star to say thanks****
    ****Please mark Accept As Solution if it solves your problem****

  • Cooling fan not work correctly

    my computer says the cooling fan not work correctly plase visit www.hp.com.go/teachcenter/startup

    Dear Customer,
    Welcome to HP Support Forum and we are glad to assist you
    It looks like you are having difficulties with regards to the Cooling Fan of your Netbook
    We will surely assist you with this
    According to the message you have posted I suspect this is purely a hardware issue where in your getting "System Fan(90B) - The system has detected that a cooling fan is not operating correctly" message. This is a mechanical fault and the Cooling Fan on your Notebook and needs to be replaced before the Notebook starts up with an Overheating Issue.
    Causes/Reason for this Issue:
    1. Sometimes this is just because of Dust, Pet Animals Hair slowing down the fan
    Perform the  below shown troubleshooting steps:
    Step 01. Turn OFF the Notebook
    Step 02. Un-plug the Power/AC Adapter and also remove the Battery too
    Step 03. Press and Hold the Power Button of the Notebook for a full minute
    Step 04. Now let's re-insert the battery back in and plug back the Power/AC Adapter
    Step 05. Start the Notebook and keep tapping F10 Key during the startup to access the BIOS
    Step 06. Once you get to the BIOS, Please press F5 Key to load setup defaults for the BIOS
    Step 07. Now let's press Esc/Escape Key. Save Changes and Exit - Yes
    Step 08. Now please wait till Unit loads Windows and then Shut down the Netbook again
    Step 09. You should clean all the Vents and Openings really good with a can of compressed air
    Note: If you are still getting the same error we need to replace the fan
    I strongly recommend you to immediately Contact HP Technical Support over the Phone for further assistance without any delay to get your Netbook Fan replaced and serviced by an authorized HP Certified Engineer
    You can also Check your warranty Here to verify the warranty status
    Hope this helps, for any further queries reply to the post and feel free to join us again
     **Click the KUDOS star on left to say Thanks**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.
    Thank You,
    K N R K
    Although I am an HP employee, I am speaking for myself and not for HP

Maybe you are looking for

  • I have lost my ipod touch 4g 32gb i have the serial number and i dont know how to find ? plz help

    i have lost my ipod touch 4g 32gb i have the serial number and i dont know how to find ? plz help plz plz plz plz email me if you want the serial key my email is [email protected]

  • ./runInstaller ended with few errors, eithere these are ignoreable?

    source = /u01/app/oracle/product/10.2.0/db_1/sysman/config/emd.properties.template destination = /u01/app/oracle/product/10.2.0/db_1/sysman/config/emd.properties.emca variables = AGENT_SEED,CONTEXT_PATH,EMDROOT,EMD_EMAIL_ADDRESS,EMD_EMAIL_GATEWAY,EMD

  • Dual monitor, but independent each other

    Hi all, I have a MacBook with a 13.3" display and an external LCD (operating system: Leopard Mac OS X 10.5.6). I would like to make the two monitors independent. I explain. I use the "spaces" application with 2 desktops: Monitor1: - desktop1: firefox

  • Image slideshow in FCE project - output for a computer monitor

    Hi I tried using iPhoto to export a QT file of an image slideshow. I thought it'd be a quick and dirty way to get an image slideshow for a short film. Rather too dirty, though. I guess there is heavy compression used, because the image quality is poo

  • Putting Admin Server to use

    Hi all,           We are planning to use a WL Proxy for teh cluster and I was wondering if I           could use the Admin server for that ...           Also how intensive in terms of memory and CPU usage is the Admin server's           job (in a clu