Problem with immediate="true" used with inputText

Hi everybody,
I have two component, A and B, of type inpuText. When A is updated, I want B to be updated according to the value provided in A.
I have to use immediate=True + context.renderResponse because I'm using some converters and validators because I want to avoid error messages being displayed at that point.
I'm using partialtrigger to tell B to refresh himself when A changes it's value.
This doesn't work.
If I'm using the same code, but with ouputText instead, everything works!
the code looks like this:
<af:inputText id="A" styleClass="normalInputText"
label="A" simple="true"
value="#{controller.formBean.A}"
valueChangeListener="#{controller.updateB}"
autoSubmit="true" immediate="false"/>
<af:inputText id="netAmount" styleClass="normalInputText"
label="B" simple="true"
value="#{controller.formBean.B}"
partialTriggers="A">
public void updateGrossPriceDependentFields(ValueChangeEvent event)
FacesContext context = FacesContext.getCurrentInstance();
formBean.setA((Long)event.getNewValue());
if(formBean.getA().intValue() == 0)
formBean.setB(new Long(222));
else
formBean.setB(new Long(0));
context.renderResponse();
Any ideas?

Hi ,
Just Try with this instead of context.renderResponse();
Context.addPartialTarget(ComponantNAME);
So that it will get refreshed
RHY
Message was edited by:
RHY

Similar Messages

  • Problem with immediate=true, maybe a Bug

    I'm using a dataTable for selecting an user. The selected userBean will be put to the session context with id "selectedUser". The next page allows to edit users values. This edit page contains a cancel button with immedtiate=true param to abort editing and go back to the list. The edit page contains some input fields like:
    <h:inputText id="firstName" value="#{selectedUser.firstName}" />
    <h:inputText id="lastName" value="#{selectedUser.lastName}" />
    These fields are showing correct values for the selected user. But after selecting another user from the list the edit page is showing the values of the previous selected user! By selecting the second user again and again after a while the edit page shows the correct values.
    Well, I've added a JSP expression to the edit page to show me if the selected user is the right one "Edit User (${selectedUser})". The value of this expression always shows the correct selected user.
    If I modify the command button from:
    <h:commandButton action="users" value="Cancel" immediate="true" />
    to:
    <h:commandButton type="reset" onclick="window.location.href='/faces/users'" value="Cancel" />
    the problem does not appear!!!
    For me it looks like a bug. Any ideas?
    Thx,
    Wolfgang

    Sorry for the imcomplete testcase, here it comes again:
    --- Users.java ---------------------------------------------
    package jsf.test;
    import java.util.ArrayList;
    import javax.faces.context.FacesContext;
    public class Users
    private ArrayList users;
    public Users()
    super();
    users = new ArrayList();
    users.add(new User("User_A", "firstName_A", "lastName_A"));
    users.add(new User("User_B", "firstName_B", "lastName_B"));
    users.add(new User("User_C", "firstName_C", "lastName_C"));
    public ArrayList getUsers()
    return users;
    public String edit()
    FacesContext context = FacesContext.getCurrentInstance();
    User user = (User)context.getExternalContext().getRequestMap().get("user");
    System.out.println("selectedUser: " + user);
    context.getExternalContext().getSessionMap().put("selectedUser", user);
    return "navToUser";
    --- User.java ---------------------------------------------
    package jsf.test;
    public class User
    private String loginName;
    private String firstName;
    private String lastName;
    public User()
    public User(String loginName, String firstName, String lastName)
    this.loginName = loginName;
    this.firstName = firstName;
    this.lastName = lastName;
    public String getLoginName()
    return loginName;
    public void setLoginName(String loginName)
    this.loginName = loginName;
    public String getFirstName()
    return firstName;
    public void setFirstName(String firstName)
    this.firstName = firstName;
    public String getLastName()
    return lastName;
    public void setLastName(String lastName)
    this.lastName = lastName;
    public String update()
    System.out.println("user update: " + this);
    return "navToUsers";
    public String toString()
    return firstName + " " + lastName;
    --- users.jsp ---------------------------------------------
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <html>
    <body>
    <f:view>
    <h:form id="selectUser">
    <b>Users</b><p>
    <h:dataTable id="users" value="#{users.users}" var="user">
    <h:column>
    <f:facet name="header">
    <h:outputText value="Login Name" />
    </f:facet>
    <h:commandLink action="#{users.edit}">
    <h:outputText value="#{user.loginName}"/>
    </h:commandLink>
    </h:column>
    <h:column>
    <f:facet name="header">
    <h:outputText value="First Name" />
    </f:facet>
    <h:commandLink action="#{users.edit}">
    <h:outputText value="#{user.firstName}"/>
    </h:commandLink>
    </h:column>
    <h:column>
    <f:facet name="header">
    <h:outputText value="Last Name" />
    </f:facet>
    <h:commandLink action="#{users.edit}">
    <h:outputText value="#{user.lastName}"/>
    </h:commandLink>
    </h:column>
    </h:dataTable>
    </h:form>
    </f:view>
    </body>
    </html>
    --- user.jsp ---------------------------------------------
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <html>
    <body>
    <f:view>
    <h:form>
    <b>User</b><p>
    <h:panelGrid columns="2" cellpadding="5">
    <h:outputText value="Login Name" />
         <h:inputText id="lognName" value="#{selectedUser.loginName}"/>
    <h:outputText value="First Name" />
         <h:inputText id="firstName" value="#{selectedUser.firstName}"/>
    <h:outputText value="Last Name" />
         <h:inputText id="lastName" value="#{selectedUser.lastName}"/>
    <h:outputText value=" " />
    <h:panelGroup>
    <h:commandButton action="navToUsers" value="Cancel" immediate="true"/>
    <%-- <h:commandButton type="reset" onclick="window.location.href='/faces/users.jsp'" value="Cancel"/> --%>
    <h:outputText value=" " />
    <h:commandButton action="#{selectedUser.update}" value="OK"/>
    </h:panelGroup>
    </h:panelGrid>
    </h:form>
    </f:view>
    </body>
    </html>
    --- faces-config.xml ---------------------------------------------
    <managed-bean>
    <description>
    Bean for TEST users.
    </description>
    <managed-bean-name>users</managed-bean-name>
    <managed-bean-class>jsf.test.Users</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    </managed-bean>
    <managed-bean>
    <description>
    Bean for TEST user.
    </description>
    <managed-bean-name>user</managed-bean-name>
    <managed-bean-class>jsf.test.User</managed-bean-class>
    <managed-bean-scope>request</managed-bean-scope>
    </managed-bean>
    <navigation-rule>
    <from-view-id>/users.jsp</from-view-id>
    <navigation-case>
    <from-outcome>navToUser</from-outcome>
    <to-view-id>/faces/user.jsp</to-view-id>
    </navigation-case>
    </navigation-rule>
    <navigation-rule>
    <from-view-id>/user.jsp</from-view-id>
    <navigation-case>
    <from-outcome>navToUsers</from-outcome>
    <to-view-id>/faces/users.jsp</to-view-id>
    </navigation-case>
    </navigation-rule>

  • Global problem with immediate="true"

    JSF specifies that immediate="true" in UICommands should skip the Validation and Update Model phases.
    The RI uses the Update Model phase to reset the local values of the input components after updating the model. That means that in the case of immediate="true", the local values are not reset, and thus saved by the state manager.
    The problem is that the next display of the page shows the previously entered values, instead of getting the values from the model, which is somewhat strange for a 'cancel' button.
    I think this is mainly a problem with the spec which clearly indicates that the clearing of the local values should be done in the update model phase.
    Is it possible to have a workaround for this ?

    the previous posts have been made long ago, but I'll give it a try:
    I think this behavior is still buggy or at least not logical.
    Example:
    I've got a dataTable which shows a list of entries, each row with an "edit" commandButton and a "new" commandButton below the list.
    If the user clicks an "edit" button, he is redirected to the "details" page where he can edit and save the values of this entry. This works as expected. But: On the "details" page, there's also a "cancel" button, which should navigate to the list again, without doing any validation or updating.
    If I set this "cancel" button to "immediate", navigation works, but then I'll always see the values of the canceled entry, regardless of which "edit" button I click in the list.
    If the "cancel" button is not immediate, validation fails when the user clicks "new" and then "cancel", because he gets an empty form, but some or all fields are required.
    There are two workarounds:
    1) Creating two different views, one for creating a new entry and one for editing.
    2) The "cancel" button is a simple html-button, with the "onlick='location.href=xxxyyy'" attribute.
    IMHO both workarounds are ugly. So, why is the view ignoring that there is a complete different entry object in the backing bean of the "details" input fields???
    BTW: I'm using JSF SUN RI 1.1.01 (same with 1.2 current snapshot).
    With MyFaces, everythings works but it has some other bugs, so I want to stick to the Sun RI.
    Thanks,
    Walter

  • Strange behaviour on delete button with immediate=true

    Hi, I'm using JDev11.1.1.2
    I have dragged a view object as a editable form on the page.I added navigation + delete/create buttons.
    As I see it all delete buttons should be immediate=true, because I want the user to be able to delete the current row despite validation errors (or maybe this is achievable some other way ? )
    But now when I press the delete button, only the readonly fields are updated with next record in the iterator, but the input fields are not updated (they remain with the delete row's values).
    If I set disable=true to an inputField, then it gets updated with the next row's value.
    I tried with partialTriggers on the inputFields to the delete button - but no luck!
    Why I get this different behaviour on inputFields and outputText when the delete button is immediate=true?
    And how to deal with this problem?
    Thank you!

    Thank Frank for the answer, but still no luck
    Here is my code:
    <af:form id="f1" partialTriggers="cb6">
         <af:panelFormLayout id="pfl1" partialTriggers="cb6">
           <af:inputText value="#{bindings.Kod4.inputValue}"
                             required="true"
                             id="it1" partialTriggers="cb6">
         </af:inputText>
         <af:outputText value="#{bindings.Kod4.inputValue}" id="out1"/>
         <af:commandButton actionListener="#{bindings.Delete.execute}"
                               text="Delete" immediate="true" partialSubmit="true"
                               id="cb6"/>
         </af:panelFormLayout>
    </af:form>As you can see there are one output and one input field for a same attribute ... the output field gets updated on delete, but the input - doesn't
    There are partialTriggers and partialSubmit but still no luck
    My view is really a simple one - 3 fields, based on an entity. Tried with different view objects - still the same effect occurs.
    I don't see how a delete button can be of any help to the user if it is NOT immediate=true. I cannot add a row and delete it right away if there are validation errors
    Please help!
    Thanks

  • Decent Headphones with Mic to Use With New Air Book:  hopefully reasonably noise canceling and reasonably priced?

    My son just bought me a new Air Book in the States.  As I am out of the country, I can't try things like headphones out myself.  Need the headphones to give classes on Skype, probably from a fairly noisey location.  Wonder if someone who is familiar with the range of headphones can suggest what would be best for use with my Air.  (I dislike my current, large ear-pad clumsey ones and would prefer something much smaller and more compact.)
    Thanks for your help.

    lunastrixae wrote:
    1) Since I've bought it, people on the other end have a hard time hearing me. They say it sounds like I'm in a tunnel. I do not have a shell case on the phone, or my hand over the microphone. It's not dirty.
    If your phone is still under warranty, I'd make an appointment at the Genius Bar.
    2) The ringer, even cranked up with an obnoxious ringtone, is way too quiet. If the phone is in my jacket pocket, or more then 15 feet away I will never hear it. In contrast, my husband's el-cheapo free cell phone rings and I can hear it through my whole home.
    I find the audible rings to be very loud on the iPhone. If you're having problems hearing them, you may have a defective phone.

  • When will Firefox version 27.1 be compatible with aol toolbar used with my iMac OS version 10.7.5? I cannot install version Firefox 27.1 until fix is in place

    I have an iMac desktop Operating System version 10.7.5.
    Current Firefox Version 26 allows me to use AOL toolbar.
    When I went to download / install updated Firefox version 27.1, message that appeared
    said this version was incompatible with AOL toolbar.
    Installation could only be complete if I disabled AOL toolbar which is NOT an option.
    Please advise when this Firefox version 27.1 incompability issue will be fixed.
    Thanks in advance.
    <sub>edit: removed your mail address from public display, since the only thing it will attract are spam bots. you will be notified per mail once somebody replies to the thread. (philipp)</sub>

    The message likely said it was the toolbar that was not compatible with Firefox 27.0.1. It is up to the Extension authors to make their Extension compatible with Firefox not the other way.
    Unless the Extension is ties with a application with a binary like with Antivirus toolbars, the majority of Extensions that have been compatible since say Firefox 10.0 should still work for example.
    Have you checked for updates for this Aol toolbar extension?

  • Can ASP with ODBC be used with Portal??

    I have seen many clients develop active server pages using Frontpage or Dreamweaver hitting Oracle through ODBC (also JDBC). I know you can apply FP and Dream Weaver extensions to Apache. Can this be used with Portal to prevent re-coding existing applications or to stay with their present development plans?

    Yes, you can expose any existing application environment through the portal. The fastest way to do it is to use the URL Services in the PDK to include application functionality as portlets by specifying the url. There are some restrictions with this approach. See the PDK for details. You can also code new portlets in Java that take advantage of the "External Applications Provider" capability to connect your portlets to an existing application in a single sign on way. Again, the PDK is the best source of information on this.

  • Problem with Time Capsule used with an External Hard Drive (with it's own power supply)

    I have a mid 2012 Macbook Pro with Mavericks installed. I have the latest Time Capsule (802.11 ac) with an external hard drive hooked up via the USB port. The external hard drive was taken from an older Mac desktop machine and is formatted correctly (Mac OS Extended Journaled). The external hard drive has it's own power supply and shows up fine when connected directly to my laptop.
    For whatever reason I CAN see the hard (LAN Storage) when in AirPort utility but I CANNOT find or access the drive from anywhere within the Finder.
    My finder settings are set this way:
    My FInder appears this way, with the Time Capsule selected:
    As you can see, the "Data" drive isn't displayed (it's not on the TIme Machine mounted drive either). The external drive "LAN Storage" isn't availailable anywhere either.
    I've tried unplugging and restarting my Time Capsule and the External Drive with no luck.
    Any advice?
    Thanks.

    Welcome to Mavericks.. and its new concept of network drives not just being hard to find like in Mountain Lion but totally invisible.
    Apple changed over Mavericks to using SMB2 by default.. broken and flawed SMB2.
    Change over to AFP by manually mounting the TC drives.
    I strongly recommend the first thing you do is change the TC names to SMB standard.. that just helps.
    Short, no spaces and pure alphanumeric.
    So rather than the very Generic THE Airport Time Capsule.. you make it even more Generic with TC1 (each subsequent TC increment the number. )
    LAN Storage is not a good name either for USB drive.. especially now that it is WAN Storage.. WStore for example.. but whatever makes sense to you.
    The name itself doesn't matter. .following the rules, short no spaces and pure alphanumeric does. Everything, conforms.
    Now in Finder.. Go, Connect to Server.
    AFP://TC1 or AFP://10.0.1.1 (you can use either the name (now that it is proper network name) or the IP address .. replace with your actual name or IP).
    The computer will find the resources and then ask you for a password.. this is required, even if default,, which is public.. so type in your password or public if you did not change it.
    Store the password in your keychain.
    The TC should now mount and all the resources on it be made available or visible.

  • Problems Installing FFMpegX for use with QuickTime and other software

    Okay I don't know whether I should be posting this here or under the board for Using Mac OS X Panther and earlier operating systems but I used to have the FFMpegX video and audio conversion software installed on my Mac an Apple 12' PowerBook G4 but recently had a system OS reinstall when my hard disk became defective and I was unable to make repairs.
    I backed up all my files but of course I couldn't back up the software I had downloaded. Was fortunately able to redownload some of my apps but this is a case where an app of mine I want back won't come back.
    I download the installer and it fails to mount the disk image even on my desktop. I am running Mac OS 10.3.9 Panther -- I tried searching for an older version of ffmpegX I could download but that didn't work either. Since when is ffmpegX shareware? When I used it the software was freeware.
    Anyways, it is such an essential program foir me that I would pay the fee just to get it back but I can't even download the trial software to begin with. I have tried downloading from the main website www.ffmpegX.com and a few other links I found on Google but to no alas none have seemed to work.
    I have plenty of videos I like to encode and re-encode from time to time using my Mac from VOB 2 .DAT 2 AVI 2 MPEG 2 M4V (iPod format) 2 WMV 2 MOV etc and vice versa using Divx and XviD codecs I NEED FFMPEGX what can I do?
    I have Mac OS 10.3.9 Panther with QuickTime 7.1.2, iTunes 6.0.5 the Apple Security Update 2006-003, Virex 7.2 virus protection software and Microsoft Office X with the latest patches for that software product and VLC Media Player. I need FFmpegX and/or (in either case actually drop the or) software for Mac OS X that allows users to convert video .DAT files from VCD to AVI.
    I have Divx codec for Mac and 3ivx software with Divx Doctor II -- an AVI 2 MOV video conversion software + D Vision 3 also installed. I currently have installed Safari 1.3.2 also.
    Any suggestions! Please help any way possible. I just have to get FFmegX working again.

    http://www.squared5.com/svideo/mpeg-streamclip-mac.html (free).
    http://apple.com/quicktime/mpeg2 ($20). Needed for MPEG-2 conversions.
    http://flip4mac.com for the WMP conversions (prices vary based on features).

  • Compatibility of shows produced with QT7 when used with QT6?

    I recently built a slideshow for my website using Quicktime 7.1.5 on my G5. It works just great when I access it from my G5, but when I try to view it on my G3 (using QT 6.5.2) I get audio but no picture. The controls for the show are there, but just a blank box where the video should be. Reading through recent forum questions it souonds like a lot of people are experienceing problems using QT 7.1.5, but I haven't seen anything else about backward compatibility issues like this one.
    The URL is http://www.tomellisphoto.com/slideshow1.htm, I'd be curious to know if any of you using pre-QT 7.1.5 are able to see anything. And if anyone has any ideas how I might fix this problem I'd really like to hear them! Thanks!!
    G3 Blueberry w/G4 processor   Mac OS X (10.2.x)  

    Hi David, I've been trying to get a Pageot version of my slideshow working but am doing something wrong. I did a minor mod on the old show and put it up using the old (slow) method and that works fine (at old URL). But all of my attempts with Pageot (quite a few) just give a blank screen.
    Here is what I did. Used the Pageot program to create a file RobinPaul1 that I placed in my Movies folder. When I click on that file I get a perfect slideshow on my desktop. But when I upload the RobinPaul1 file and try to view it I get nothing. The file shows that it has uploaded and is there as RobinPaul1.html, but nothing but blank screen when I try that URL, http://www.tomellisphoto.com/RobinPaul1.html
    Clearly I've screwed up somewhere, but I don't know where. Help??
    G5 2.0 Mac OS X (10.4.8)
    G5 2.0 Mac OS X (10.4.8)
    G5 2.0 Mac OS X (10.4.8)
    G5 2.0   Mac OS X (10.4.8)  

  • Connecting my western digital drive with airport to use with my idevices

    I purchased "my book essiential" i had it reformatted at the apple store to be used by my apple products. Now I have it connected to my "airport extreme base" and I need to establish an access with my  book essential using my iPad and my iPhone. At the moment my computer needs repair so I can't  do much.
    On my idevices, I have Airport Utility app.
    i went to edit-advanced-file sharing and Disks.
    File sharing -ON.
    The utility has the latest update
    what else I need to do?
    thanks

    In order to access files on network drives from either an iPhone or the iPad, you would need an app, like FileBrowser, to do so.

  • Best headset with mic to use with macbook pro

    Hello,
    I have a headset with a mic that I am using through Skype and other applications to speak to customers.
    The mic is connected through a stereo mini plug, going through the headphone input jack on my MacBook Pro.
    The mic audio is no longer registering through the audio input, and I can see (hear through recordings) that the only audio coming through when I where that headset is being picked up by the laptop built in mic.
    I've done some reseach on line and have a few questions:
    1)  Is there a known issue with mic audio coming through the headphone input?
    2) Is there a known issue with mic audio coming through the headphone input specifically only when using Mountain Lion?
    3) Is it better audio quality to have a headset with mic connected via a USB input rather than the stereo mini input.
    4) Are there any recommendations for mic/headset combos out there or a brand that makes good product compatible with the MacBook Pro?
    Thank you,
    Suzanne

    Good heatset mics very nearly dont exist.
    If you want quality audio at all, mid-level grade USB mic is the best route.
    And the use of headphones seperately.
    Best mic sub-200$ is the Zoom H2n
    Macbook Air uses a headset jack if you want a headset mic/headphone setup.
    the downside being most mics on headsets are ubiquitously bad quality.
    The PRO mics for laptops/ computers, most of them plug in via USB, not the headset jack.
    SONY ICD-SX712 is a great choice (best "cheap" mic Ive found)

  • Wanted: Portable Hard Drive With SD Slot Used with Leopard/Timemachine

    Are there external/portable hard drives that work with Leopard/Timemachine, which have an SD slot? It would be convenient to take the hard drive on the road to download frequently. But I'm not sure about a power source unless I bring my laptop.
    I have an 80GB MacBook and looking for external picture storage. I use the computer mainly for IPhoto and web browsing.
    The Apple store online doesn't have such a device and I would consider getting the iomega 160 GB portable hard drive from them.
    Many thanks,
    Carlos Marques

    You can boot your iMac from a connected FireWire drive. It must be FireWire and not USB. G3 Macs cannot run Leopard. Tiger will work fine, if you have more RAM.
    Also, can a Mac Mini be connected to my iMac and used as an external drive?
    If the Mac Mini is PowerPC and not the current Intel version, you should be able to start the Mac mini in FireWire Target Disk Mode
    http://support.apple.com/kb/HT1661
    and connect it to the iMac's FireWire port as an external drive. If the Mac mini is PowerPC and has Tiger installed on it, the iMac should even be able to boot from that installation. If it has Leopard, you can still connect to it for data storage purposes, but you cannot boot the iMac from it.
    If the Mac mini is Intel, the drive is partitioned using +GUID Partition Table+ (instead of +Apple Partition Map+ used by PowerPC Macs). Therefore, access to the drive using FireWire Target Disk Mode will depend on the OS installed on the iMac. It should work if the OS is Tiger. It will not work with Panther and earlier.
    If you want to use a Mac mini to off-load some of the data on the iMac, you may want to use a network connection instead. Then, you will have full access to the Mac mini while it shares its storage space with the old iMac.

  • What case with armband to use with Invisble Shield?

    I have an Invisible Shield on my iPod and I want to attach to my arm when I'm at the gym. I tried a DLO action jacket with it but it's plastic screen protector stuck to my Invisible Shield and started to pull the Invisible Shield off! So does anyone have any suggestions>

    This is the best value in printers out there.  It's wireless so it will work with your apple devices such as the iPhone and iPad, but it also does eveything else I need as well.  It's the best all around printer I've seen on the market.  I found all the reviews helpful as well.
    http://www.amazon.com/Canon-MX882-Wireless-Printer-4894B002/dp/B004HO58UW/ref=sr _1_2?s=electronics&ie=UTF8&qid=1325743111&sr=1-2

  • Mirroring my PC laptop with AppleTV for use with a SMART Board

    I just installed an AppleTV in my classroom. My iPad mirrors onto my SMART Board via the appleTV, but I cannot do the same with my PC laptop.  Do I need additional software to mirror presentations such as power point, the Internet, SMART documents, etc.?

    Yes, try a 3rd party program like Airparrot.

Maybe you are looking for

  • Error when use User-Defined Function

    I just create User defined function "getfilename" and I put there: "DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION); DynamicConfigurationKey key = Dyn

  • Oracle Forms 9i Download Link Or Sample .fmb Required

    Hi all, I am trying to build a demo to see how to migrate Forms application to 11g using Migration Assistant. For me to achieve this I need a sample .fmb (let it be a very simple one) created using Forms Developer 9i. I am unable to find download lin

  • My 'summary' banner line is not visible

    I am trying to sync the iPad with my PC and transfer music files from the PC to the iPad.  The 'summary' banner line is no where to be found!!!! In the left column of the iTunes window,, only 'my device' is viewed.  There are no folders under the 'de

  • Where did the show duplicates go on the new version of iTunes?

    I am trying to delete some duplicate songs, but cant find the function on this new version.

  • Adding filters to styles and effects

    Photoshop Elements 3, Windows XP I have attempted to install downloaded filters, extension .8BF. I placed them in C:\Program Files\Adobe\Photoshop Elements 3.0\plugins\filters. Some show up when I open the Editor, others don't. I did empty cache fold