Cancel button on ADF popup does not work with AutoSubmit Fields

Hello,
I currently have a very simple form inside of and ADF popup. I the form contains one SelectManyListbox. Here's my issue.
Lets say my form contains option A, B, and C.
Okay I open the popup for the first time, and a select, A and B, and I click cancel. When I open the form again, I would expect no options to be selected. HOwever, that is not the case, the last options I selected, prior to hitting Cancel are still selected.
I was able to fix this issue by setting contentDelivery to "lazyUncached".. However, as soon as I set autoSubmit to "true", the behavior goes back to keeping the selections I made, even if I hit cancel.
Question :
How can tell the popup to deselect the items that were selected in the SelectManyListbox during the canceled operation of the popup, when autoSubmit is enabled? IN other words, if A and B were selected, and I hit cancel, when I open the popup again, I should see zero items selected in the list.
Regards,,.

Here, is a sample that i have in my project.
<af:popup childCreation="deferred" autoCancel="disabled" id="p1"
binding="#{backing_dev_rma_cart_Details.showCartDetails}"
contentDelivery="lazyUncached">
<af:dialog id="d2" type="none"
title="#{userinterfaceBundle.MODIFY_CART_DETAILS}"
inlineStyle="font-size:small;" closeIconVisible="false">
<f:facet name="buttonBar"/>
<af:panelGroupLayout id="pgl33" layout="vertical">
<af:panelFormLayout id="pfl2" rows="4" maxColumns="1">
<af:panelLabelAndMessage label="#{userinterfaceBundle.SERIAL}"
id="plam1">
<af:outputText value="#{bindings.SerialNumber.inputValue}"
id="ot9"/>
</af:panelLabelAndMessage>
<af:panelLabelAndMessage label="#{userinterfaceBundle.PART}"
id="plam2">
<af:outputText value="#{bindings.ItemNumber.inputValue}"
id="ot10"/>
</af:panelLabelAndMessage>
<af:panelLabelAndMessage label="#{bindings.Description.hints.label}"
id="plam3">
<af:outputText value="#{bindings.Description.inputValue}"
id="ot12"/>
</af:panelLabelAndMessage>
<af:panelLabelAndMessage id="plam12"
label="#{bindings.CustomerPo1.hints.label}"
rendered="#{pageFlowScope.RmaAttributesBean.categoryId == 'RET ONLY' ? false : true}">
<af:inputText value="#{bindings.CustomerPo1.inputValue}"
label="#{bindings.CustomerPo1.hints.label}"
columns="30" maximumLength="25"
shortDesc="#{bindings.CustomerPo1.hints.tooltip}"
id="it11" simple="true"
required="#{sessionScope.GlobalInfo.rmaPOreq == true ? true : false}"
rendered="#{pageFlowScope.RmaAttributesBean.categoryId == 'RET ONLY' ? false : true}">
<f:validator binding="#{bindings.CustomerPo1.validator}"/>
</af:inputText>
</af:panelLabelAndMessage>
<af:panelLabelAndMessage label="#{bindings.TrailerNo1.hints.label}"
id="plam5">
<af:inputText value="#{bindings.TrailerNo1.inputValue}"
label="#{bindings.TrailerNo1.hints.label}"
required="#{bindings.TrailerNo1.hints.mandatory}"
columns="30" maximumLength="15"
shortDesc="#{bindings.TrailerNo1.hints.tooltip}"
id="it8" simple="true">
<f:validator binding="#{bindings.TrailerNo1.validator}"/>
</af:inputText>
</af:panelLabelAndMessage>
<af:panelLabelAndMessage id="plam11"
label="#{userinterfaceBundle.REASON_FOR_RETURN_0}">
<af:selectOneChoice id="soc5" autoSubmit="true"
unselectedLabel="#{'--'} #{userinterfaceBundle.REASON_FOR_RETURN_0} #{'--'}"
valueChangeListener="#{backing_dev_rma_cart_Details.reasonForReturnValueChange}"
simple="true"
value="#{bindings.ProblemTypeId.inputValue}">
<af:forEach items="#{bindings.RmaProblemCodes.rangeSet}"
var="item">
<af:selectItem id="si4" value="#{item.Meaning}"
label="#{item.LookupCode}"/>
</af:forEach>
</af:selectOneChoice>
</af:panelLabelAndMessage>
<af:panelLabelAndMessage label="#{bindings.CompanyNotes1.label}"
id="plam4"
showRequired="#{bindings.ProblemTypeId.inputValue eq 'OT'}"
partialTriggers="soc5">
<af:inputText value="#{bindings.CompanyNotes1.inputValue}"
label="#{bindings.CompanyNotes1.label}"
required="#{bindings.CompanyNotes1.hints.mandatory}"
columns="60" maximumLength="150"
shortDesc="#{bindings.CompanyNotes1.hints.tooltip}"
id="it9" simple="true" partialTriggers="soc5"
rows="2">
<f:validator binding="#{bindings.CompanyNotes1.validator}"/>
</af:inputText>
</af:panelLabelAndMessage>
<af:panelLabelAndMessage label="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName1}"
id="plam6"
showRequired="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customRequired1 == 'Y' ? true : false}"
rendered="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName1 != null}">
<af:inputText value="#{bindings.Attribute1.inputValue}"
label="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName1}"
columns="60" maximumLength="150" rows="2"
shortDesc="#{bindings.Attribute1.hints.tooltip}"
required="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customRequired1 == 'Y' ? true : false}"
id="it14" simple="true">
<f:validator binding="#{bindings.Attribute1.validator}"/>
</af:inputText>
</af:panelLabelAndMessage>
<af:panelLabelAndMessage label="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName2}"
showRequired="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customRequired2 == 'Y' ? true : false}"
rendered="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName2 != null}"
id="plam7">
<af:inputText value="#{bindings.Attribute2.inputValue}"
label="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName2}"
columns="60" maximumLength="150" rows="2"
required="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customRequired2 == 'Y' ? true : false}"
shortDesc="#{bindings.Attribute2.hints.tooltip}"
simple="true" id="it15">
<f:validator binding="#{bindings.Attribute2.validator}"/>
</af:inputText>
</af:panelLabelAndMessage>
<af:panelLabelAndMessage label="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName3}"
showRequired="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customRequired3 == 'Y' ? true : false}"
rendered="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName3 != null}"
id="plam8">
<af:inputText value="#{bindings.Attribute3.inputValue}"
label="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName3}"
columns="60" maximumLength="150" rows="2"
shortDesc="#{bindings.Attribute3.hints.tooltip}"
required="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customRequired3 == 'Y' ? true : false}"
simple="true" id="it16">
<f:validator binding="#{bindings.Attribute3.validator}"/>
</af:inputText>
</af:panelLabelAndMessage>
<af:panelLabelAndMessage label="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName4}"
showRequired="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customRequired4 == 'Y' ? true : false}"
rendered="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName4 != null}"
id="plam9">
<af:inputText value="#{bindings.Attribute4.inputValue}"
label="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName4}"
columns="60" maximumLength="150" rows="2"
shortDesc="#{bindings.Attribute4.hints.tooltip}"
required="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customRequired4 == 'Y' ? true : false}"
simple="true" id="it17">
<f:validator binding="#{bindings.Attribute4.validator}"/>
</af:inputText>
</af:panelLabelAndMessage>
<af:panelLabelAndMessage label="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName5}"
showRequired="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customRequired5 == 'Y' ? true : false}"
rendered="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName5 != null}"
id="plam10">
<af:inputText value="#{bindings.Attribute5.inputValue}"
label="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName5}"
columns="60" maximumLength="150" rows="2"
shortDesc="#{bindings.Attribute5.hints.tooltip}"
required="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customRequired5 == 'Y' ? true : false}"
simple="true" id="it18">
<f:validator binding="#{bindings.Attribute5.validator}"/>
</af:inputText>
</af:panelLabelAndMessage>
<f:facet name="footer"/>
</af:panelFormLayout>
<af:spacer width="10" height="10" id="s19"/>
<af:panelGroupLayout id="pgl40" layout="horizontal"
styleClass="AFStretchWidth">
<af:panelGroupLayout id="pgl41" layout="horizontal"
styleClass="AFStretchWidth">
*<af:commandButton text="#{userinterfaceBundle.CANCEL}"*
styleClass="Button2" id="cb8" immediate="true"
*actionListener="#{backing_dev_rma_cart_Details.showDetailsPopupCancel}">*
*<af:resetActionListener/>*
*</af:commandButton>*
</af:panelGroupLayout>
<af:panelGroupLayout id="pgl42" layout="horizontal" halign="end"
styleClass="AFStretchWidth">
<af:commandButton text="#{userinterfaceBundle.OK}" id="cb10"
partialSubmit="true"
actionListener="#{backing_dev_rma_cart_Details.okAction}"
icon="/iq/skin/images/CommandButtonIcon.png"
iconPosition="trailing"/>
</af:panelGroupLayout>
</af:panelGroupLayout>
</af:panelGroupLayout>
<af:spacer height="-25px" id="s20"/>
</af:dialog>
</af:popup>

Similar Messages

  • Thinkpad laptop, red "mouse" button/nub in keyboard does not work with version 4.0, Why?

    IBM and/or Lenova laptop computers have the red button/nub in the center of the keyboard that acts with "mouse" functions such as scrolling up and down pages. After downloading Version 4.0 of Firefox this feature does not work anymore. Is it locked in some settings?

    i figured it out!
    1) go to control panel
    2) click on mouse
    3) click on the UltraNav tab at the top
    4) for the TrackPoint, i have the Enable TrackPoint box checked and the "Use as pointing device with advanced features
    5) click on Settings
    6) click on settings again towards the bottom right
    7) for "Scrolling Type" click on Smooth.
    that should work!

  • When I right click on an Item to copy and pasdte it the Copyt button on my mouse does not work with firefox, it works everywhere else...I highlight an item andt

    I have tried all the solutions so far. they did not change the outcome. My right mouse will not show the copy command. I am getting the drop down menu when I right click and I can highlight words but when I right click to copy and paste the copy does not work... it was working fine until I did the last update for foxfire.. I have 22.0 version

    Start Firefox in Safe Mode to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    <b> To Enable SafeMode </b>
    *You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    *''Once you get the pop-up, just select "'Start in Safe Mode"''
    If it works in Safe Mode and in normal mode with all extensions (Tools > Add-ons > Extensions) disabled then try to find which extension is causing it by enabling one extension at a time until the problem reappears.
    Close and restart Firefox after each change via "Firefox > Exit" (Windows: Firefox/File > Exit; Mac: "Firefox > Quit Firefox"; Linux: "Firefox/File > Quit")
    * https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • PLSQL join does not work with RAW fields

    Hi All, I wanna to do a join between two table which have as primary key a GUID field (RAW 16). To do this I'm creating a cursor and the sql is simple. However, it returns the following error when I try to compile the procedure:
    Error(41,3): PL/SQL: SQL Statement ignored
    Error(42,27): PL/SQL: ORA-06552: PL/SQL: Compilation unit analysis terminated ORA-06553: PLS-320: the declaration of the type of this expression is incomplete or malformed
    The tables and the cursor are listed below. I would like to know the best way to do a join with Raw fields in plsql once that the same query works when used out of the procedure.
         CURSOR Areas IS
    Select ha.partial, ha.acidental_burn, ha.edge_cut
    from harvest_area ha, harvest_order ho
    where ha."ORDER" = ho."ID";
    create table "HARVEST_AREA" (
    "ID" RAW(16) not null,
    "VERSION" NUMBER(10,0) not null,
    "ACCIDENTAL_BURN" NUMBER(1,0) not null,
    "AREA" DOUBLE PRECISION not null,
    "EDGE_CUT" NUMBER(1,0) not null,
    "K_FACTOR" NUMBER(1,0) not null,
    "PARTIAL" NUMBER(1,0) not null,
    "SISCONAGR_CONTROL" NUMBER(1,0) not null,
    "CUT" RAW(16) not null,
    "ORDER" RAW(16) not null,
    "PROVIDER" RAW(16) not null,
    "SHAPE" MDSYS.SDO_GEOMETRY,
    primary key ("ID")
    create table "HARVEST_ORDER" (
    "ID" RAW(16) not null,
    "VERSION" NUMBER(10,0) not null,
    "CHOPPED" NUMBER(1,0) not null,
    "CODE" NUMBER(10,0) not null,
    "FILE" NVARCHAR2(256),
    "LOAD_DISTRIBUTION" NUMBER(1,0) not null,
    "RAW_CANE" NUMBER(1,0) not null,
    "TIMESTAMP" TIMESTAMP(4) not null,
    "FACTORY" RAW(16) not null,
    "FRONT" RAW(16) not null,
    "MODE" RAW(16) not null,
    "SHAPE" MDSYS.SDO_GEOMETRY,
    primary key ("ID")
    );

    Ok, I could reproduce on my 10.2.0.4 (my first test was on 11.2.0.1):
    SQL> create table harvest_area
       id                raw (16) not null,
       version           number (10, 0) not null,
       accidental_burn   number (1, 0) not null,
       area              double precision not null,
       edge_cut          number (1, 0) not null,
       k_factor          number (1, 0) not null,
       partial           number (1, 0) not null,
       sisconagr_control number (1, 0) not null,
       cut               raw (16) not null,
       order1            raw (16) not null,
       provider          raw (16) not null,
       primary key (id)
    Table created.
    SQL> create table harvest_order
       id                raw (16) not null,
       version           number (10, 0) not null,
       chopped           number (1, 0) not null,
       code              number (10, 0) not null,
       file1             nvarchar2 (256),
       load_distribution number (1, 0) not null,
       raw_cane          number (1, 0) not null,
       timestamp         timestamp (4) not null,
       factory           raw (16) not null,
       front             raw (16) not null,
       mode1             raw (16) not null,
       primary key (id)
    Table created.
    SQL> declare
       cursor areas
       is
          select null
          from harvest_area ha,
               harvest_order ho
          where ha.order1 = ho.id;
    begin
       for c in areas
       loop
          null;
       end loop;
    end;
    Error at line 41
    ORA-06550: line 6, column 12:
    PL/SQL: ORA-06552: PL/SQL: Compilation unit analysis terminated
    ORA-06553: PLS-320: the declaration of the type of this expression is incomplete or malformed
    ORA-06550: line 4, column 7:
    PL/SQL: SQL Statement ignoredProblem is the timestamp column in harvest_order which I think you need to rename:
    SQL> drop table harvest_area
    Table dropped.
    SQL> drop table harvest_order
    Table dropped.
    SQL> create table harvest_area
       id                raw (16) not null,
       version           number (10, 0) not null,
       accidental_burn   number (1, 0) not null,
       area              double precision not null,
       edge_cut          number (1, 0) not null,
       k_factor          number (1, 0) not null,
       partial           number (1, 0) not null,
       sisconagr_control number (1, 0) not null,
       cut               raw (16) not null,
       order1            raw (16) not null,
       provider          raw (16) not null,
       primary key (id)
    Table created.
    SQL> create table harvest_order
       id                raw (16) not null,
       version           number (10, 0) not null,
       chopped           number (1, 0) not null,
       code              number (10, 0) not null,
       file1             nvarchar2 (256),
       load_distribution number (1, 0) not null,
       raw_cane          number (1, 0) not null,
       timestamp1        timestamp (4) not null,
       factory           raw (16) not null,
       front             raw (16) not null,
       mode1             raw (16) not null,
       primary key (id)
    Table created.
    SQL> declare
       cursor areas
       is
          select null
          from harvest_area ha,
               harvest_order ho
          where ha.order1 = ho.id;
    begin
       for c in areas
       loop
          null;
       end loop;
    end;
    PL/SQL procedure successfully completed.

  • What should i do my sleep/wake button on iphone 5 does not work properly it only works if i press on the left side of it and my iphone still on warranty i heard its a common problem

    what should i do my sleep/wake button on iphone 5 does not work properly it only works if i press on the left side of it and my iphone still on warranty i heard its a common problem

    If there's a hardware defect and your phone is under warranty, bring it to Apple for replacement.

  • My iphone5c is still under the 1 year warranty, the top button constantly sticks and does not work properly will Apple still replace my phone even though there is a few chips and scratches on the back?

    My iphone5c is still under the 1 year warranty, the top button constantly sticks and does not work properly will Apple still replace my phone even though there is a few chips and scratches on the back?

    As Peter says above, only an Apple Store genius can advise you.
    But to further clarify, you seem to postulate that if Apple helps you, the cure would be a replacement.  That is not necessarily true.  Let them look at it and advise you what the remedy is.  They may offer you nothing (saying it's your fault), or they may offer you a solution (keeping your current iPhone), or possibly a replacement.

  • How do I reject incoming calls on Ios7 when locked? Power button on top right does not work.

    How do I reject incoming calls on Ios7 when locked? Power button on top right does not work.

    I am also facing the same issues. Sometime i get an option to reject call and sometime i won't .
    Tried all the basic troubleshooting i could from my end but nogo. Also tried complete reset by loosing data still the same results. Any suggestions and fix, Apple ???

  • HT201412 The top button of my iphone does not work and my iphone froze and wont let me enter the passcode

    The top button of my iphone does not work and my phone froze and I'm unable to unlock it. What do i do?

    Get the sleep button on your iPhone repaired.

  • External USB HD does not work with HAL:

    External USB HD does not work with HAL:
    From the last 10 days the HAL auto-mount with ntfs-3g file system of my external hard drive  does not woks.
    But the manual mount procedure with the command mount -t ntfs-3g /dev/sdb* /mnt/XYZ works.
    I've followed the instructions in the wiki: http://wiki.archlinux.org/index.php/HAL and the system has worked up to the last kernel or HAL update.
    My fat32 usb-stick works without any problem.
    If I try to open the device with KDE it appears an error popup wit this message:
    TODO: have to rethink extra options
    Error: kio_media_mount_helper
    The log from the kernel.log is
    Nov 6 22:03:16 myhost usb 5-1: new high speed USB device using ehci_hcd and address 4
    Nov 6 22:03:16 myhost usb 5-1: configuration #1 chosen from 1 choice
    Nov 6 22:03:17 myhost Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
    Nov 6 22:03:17 myhost ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
    Nov 6 22:03:17 myhost Initializing USB Mass Storage driver...
    Nov 6 22:03:17 myhost scsi6 : SCSI emulation for USB Mass Storage devices
    Nov 6 22:03:17 myhost usb-storage: device found at 4
    Nov 6 22:03:17 myhost usb-storage: waiting for device to settle before scanning
    Nov 6 22:03:17 myhost usbcore: registered new interface driver usb-storage
    Nov 6 22:03:17 myhost USB Mass Storage support registered.
    Nov 6 22:03:22 myhost scsi 6:0:0:0: Direct-Access WDC WD32 00JB-00KFA0 0811 PQ: 0 ANSI: 0
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] 625142448 512-byte hardware sectors (320073 MB)
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Test WP failed, assume Write Enabled
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Assuming drive cache: write through
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] 625142448 512-byte hardware sectors (320073 MB)
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Test WP failed, assume Write Enabled
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Assuming drive cache: write through
    Nov 6 22:03:22 myhost sdb: sdb1
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Attached SCSI disk
    Nov 6 22:03:22 myhost sd 6:0:0:0: Attached scsi generic sg2 type 0
    Nov 6 22:03:22 myhost usb-storage: device scan complete
    and the error.log is
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Assuming drive cache: write through
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Assuming drive cache: write through
    Do you have some idea ....
    Bye.

    I have done the following:
    Downloaded the patched hal version.
    used makepkg in /abs/local/trunk/ to create a pkg for pacman
    used sudo pacman -U pkgname to install it.
    used sudo nano /etc/hal/fdi/policy/preferences.fdi to create the fdi file with the following content:
    saved the file and removed my ntfs entryes from fstab and rebooted. and still there is no automount off ntfs partitions.
    have i done something wrong?
    br fjodork
    WARNING: what follows is a guide of what did work for me, I'm still in an early stage of learning linux, so please correct me if anything of what follows is wrong/dangerous/stupid. As I said, this worked for me, it's not pretty, since I was learning each step on the fly and I'm sure there are better ways to do this.
    So fjodork, you seem to have done the the necessary steps, though i couldn't get it to work until i first removed hal without dependencies
    pacman -Rd hal
    it will give you some warning about the dependencies, ignore  it since we are reinstalling hal in a few steps.
    First i tried to follow Raymano's link, obviously it showed me nothing in the browser so I thought it might be a broken link.
    So I downloaded the source tarball from here http://hal.freedesktop.org/releases/hal-0.5.10.tar.gz
    unpacked it changed the /tools/hal-storage-mount.c as per Milfadoodle's instructions.
    at first I tried to compile directly from source, the process would finish without a glitch though after reboot nothing changed, as if hal weren't
    installed, i guess there were issues with paths. anyway read on
    Then repacked the source in tarball, copied it to /var/abs/extra/system/hal and modified the PKGBUILD as follows
    makedepends=('pkgconfig' 'gperf')
    options=('!libtool')
    install=hal.install
    source=(${pkgname}-${pkgver}.tar.gz #removed url so makepkg looks in the current directory for the tarball
        hal
        hal-policy.patch
        cryptsetup_location.patch
        hal-0.5.9-hide-diagnostic.patch
        ntfs3g-valid-options.patch)
    md5sums=('6641c30a27c00485c6accac5110ff911' # replace with md5sum of your package's sourceball (run md5sum filename)
             '882f67668cb14a0a9e4a27ef22278027'
             '5ba8b610aa9763a5f42b9f7cbd7a86ad'
    then makepkg (i had to add --asroot, don't ask why
    and finally pacman -U hal-0.5.10-1-i686.pkg
    another reboot and everything worked without a glitch!:D (yeah i know i still haven't got rid of the reboot mentality )
    I have also put the policy files as per the wiki instructions.
    PS: I know this is a dirty way to getting things done but as i said, I'm just starting
    If anyone could comment/correct/explain this post I'd be more than happy, the automount issue was bothering me for about a month now (you'll say why do I need ntfs in the first place? well, I only recently switched for Linux as my primary OS, these are some relics of the M$ era

  • My 4th gen iPod Touch does not work with Ford sync since updating OS

    When I updated my iPod to the new os, it does not work with my ford sync system anymore. how do I fix this?

    Have lots of issues with Fords MySync and here's some info that might help....
    Using ford sync interface, goto the phone section, then settings, and look if your iPhones name is listed, if so select the phone name thru sync interface and remove/delete it from the sync list, then go thru the Bluetooth pairing process again.
    If that doesn't work, do the same on the iPhone, select ford sync entry in Bluetooth and remove sync or forget this device on the iPhone and then go thru Bluetooth pairing again.
    If that doesn't work Power off iphone ( not sleep) hold power button till you see red slider to power off. Then restart iphone, try pairing up again.
    If that doesn't work go back to MySync and goto phone settings and use the up-down slider till you see sync master reset. Confirm then go thru BT pairing again.
    If that doesn't work there is a fuse for the my sync system. Fuse box is usually behind kick panel of front passenger seat side for the Mustang #3, its behind a paper black cover. Remove fuse for 5-30 secs then replace.
    Lastly, make sure your MySync Firmware is the latest vers. Mines 4.0.2 goto fords MySync support page to check
    http://www.ford.com/syncmyride/
    or call 1-800-392-3673 Opt 3
    A google search might help for your model and year if not a newer mustang and you couldn't get to ford.
    Good Luck

  • Better privecy does not work with windows vista home prem. what other program removes LSO'S AND HOW can I stop trackers?

    Question
    better privacy does not work with windows vista home prem. what other program removes LSO'S AND HOW can I stop trackers? edit
    Details

    As a temporary workaround, I believe this Adobe management page allows you to clear your "Flash cookies": [http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager07.html Adobe - Flash Player : Settings Manager - Website Storage Settings panel] (hosted on macromedia.com -- Macromedia was the original developer of Flash).
    Regarding the script error, if I'm reading the script correctly, it is related to accessing your Flash cookies directory. It seems the publisher's support forum is not currently available for searching, but that might be a good next step.
    In the meantime, could you check whether the script has the correct location for your Flash cookies directory? If you can't access Tool > BetterPrivacy, you could check here:
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the filter box, type or paste '''bpr''' and pause while the list is filtered
    (3) There should be a bolded setting named '''extensions.bprivacy.DataDir''' which looks approximately like the following:
    C:\Users\''yourWindowsUsername''\AppData\Roaming\Macromedia
    Do you have a similar value? If you paste the path used by BetterPrivacy into a Windows Explorer window, does it open? Also, click a couple levels in the folder, can you see:
    Flash Player \ #SharedObjects
    If the value is wrong, right-click the wrong value and choose Reset. BetterPrivacy should update the value the next time you try to access it.
    If the value is blank, you could try inserting a sensible value and see whether that helps.
    Any luck?

  • I have upgraded firefox 4 to firefox 5 but it does not work with real player record plugin 14.0.3......so I want to revert the upgrade to 4....please give me solution or firefox 4

    Question
    I have upgraded firefox 4 to firefox 5 but it does not work with real player record plugin 14.0.3......so I want to revert the upgrade to 4....please give me solution or firefox 4

    Go to your actual realplayer (program), click the top right button (Realplayer with an downwards arrow) and update your software. Make sure Firefox is closed while you do this.
    ::Worked for me::

  • ADF bindings are not working with inheritance heirarchy.

    ADF bindings are not working with inheritance heirarchy. I am using embedded OC4J in JDeveloper 10.1.3.2.
    For the data model I have the following objects\attributes.
    1) User (abstract EJB 3.0 POJO)
    - Id
    - userId
    - userName
    2) Employee -> extends User (EJB 3.0 POJO)
    - enabled
    - password
    3) Manager -> extends Employee (EJB 3.0 POJO)
    - numOfEmployees
    4) UserSessionBean (Stateless Session Bean)
    - public User findUserByUserId(String userId)
    - public List<User> queryUserFindAll()
    - Object mergeEntity(Object entity)
    I created 2 JSF pages using ADF.
    1) ListUsers.jspx - Lists all the users of type Employee and Manager in a table. You can select an user and chose to modify the user details using a modify button.
    2) ModifyUser.jspx - Modify the selected user and persist the modified user details.
    I implemented ListUsers.jspx by dragging and dropping queryUserFindAll() method from the ADF datacontrol on to the JSF page and selected ADF Table format with selection enabled.
    Similarly for the ModifyUser.jspx page I dragged and dropped the User object returned by findUserByUserId(String userId) and selected ADF Form format. I selected OutputText field types for userId and userName.
    I then created a navigation case from ListUsers.jspx to ModifyUser.jspx and pass the selected user.
    Now when I try to run the web application, ListUsers.jspx correctly displays all the users. Then I select a user of type Employee and click on the modify button. This brings up the ModifyUser.jspx page. However, the UserId text field displays the value for "Id" field rather than "userId".
    Question that I have is:
    - Why is ADF framework not able to retrieve the appropriate user attribute value for a Employee based on the binding information in case of inheritance ?
    Thanks,
    Piyush

    Hi,
    tried with JDeveloper 10.1.3.3 and this works for me. Try JDeveloper 10.1.3.3 - if it doesn't work, have a closer look at your sessionFacade
    Frank

  • Adobe Flash Player does not work with Safari. What can I do?

    Hi,
    I have a MacBook Pro, Retina, 15 inch, late 2013,  2 GHz Intel Core i7, using OS X 10.9.4. I have installed Adobe Flash Player. In my System Preference, in the advanced settings, it is set to install updates also tells me that I have the NPAPI Plug-in (version 14.0.0.145) installed but not the PPAPI Plug-in. Is this the reason why it does not work with Safari (keeps telling me to download the app, which I did but still does not work)? Is there any way I could fix the problem? Please, help.
    Thanks.

    If you can't install or update Flash, follow these instructions.
    If you have installed the latest version of Flash, please take each of the following steps that you haven't already tried. After each step, relaunch Safari and test. For a "missing plug-in" error, start with Step 8. Back up all data before making any changes.
    Step 1
    You might have to log out or restart the computer before a Flash update takes effect.
    Step 2
    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Privacy ▹ Remove All Website Data...
    and confirm. Close the window. Then select
               ▹ System Preferences… ▹ Flash Player ▹ Advanced
    and click Delete All. Close the preference pane.
    Step 3
    If you're only having trouble with YouTube videos, log in to YouTube and load this page. You may see a link with the text "Leave the HTML5 Trial." If so, click that link.
    Step 4
    a. If you get a warning of a "blocked" or "outdated" plug-in, then select the Security tab in the Safari preferences window. In the list of plugins on the left, there should be one—and only one—entry for "Adobe Flash Player," showing the same version number that you installed. Select that entry. On the right there will be a list of websites for which you have specifically allowed Flash, if any. It's normal for the list to be empty. Below that is a menu labeled
              When visiting other websites
    From that menu, select either Allow or Ask.
    b. If you still get the alerts, then go back to the Flash Player preference pane and select the Advanced tab. Click Check Now. Quit and relaunch the browser.
    c. If the alerts still persist, triple-click anywhere in the line below on this page to select it:
    /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources
    Right-click or control-click the highlighted text and select
              Services ▹ Open
    from the contextual menu.* A folder should open. Inside it, there should be a file named "XProtect.meta.plist". If that file is missing and you know why it's missing, restore it from a backup or copy it from another Mac running the same version of OS X. Otherwise, reinstall OS X.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.
    Step 5
    In the Safari preferences window, select the Advanced tab and uncheck the box marked
              Stop plug-ins to save power
    Step 6
    Open this folder as in Step 4:
    /Library/Internet Plug-Ins
    Delete the following item, or anything with a similar name, if present:
              Flash Player (failing).plugin 
    You may be prompted for your login password.
    Step 7
    Re-download and reinstall Flash. Download it from the domain "get.adobe.com". Don't click a link from any other website, including this one, because you can't trust links. They may be an attempt to trick you into installing malware masquerading as Flash. Type the address into the browser window. Never download a Flash update from anywhere else.
    Step 8
    If you get a "missing plug-in" error, select
              Safari ▹ Preferences... ▹ Security
    from the Safari menu bar and check the box marked  
              Allow (or Enable) plug-ins
    Then click the button marked
              Manage Website Settings...
    if present and make sure that the website is not blocked for Flash.
    Step 9
    Select
              Safari ▹ Preferences... ▹ Extensions
    from the Safari menu bar. If any extensions are installed, disable them.

  • Window 10 build 10041 does not work with Intel 82579V Gigabit Ethernet on ASUS motherboard

          
    I originally posted this question here:
    answers.microsoft.com/en-us/insider/forum/insider_wintp-insider_update/window-10-build-10041-does-not-work-with-intel/6729892f-83aa-4822-b20a-ea84f4fd06c7
    and was asked to post it on this forum...
    I updated a computer I have which is a quad core i7 that I built and includes an ASUS motherboard with Intel 82579V Gigabit Ethernet built in. Windows 10 preview 9926 worked fine with this network adapter. Window 10 build 10041 does not, and I have tried
    it twice so far. I even went as far as buying a Thunderbolt-Gigabit Ethernet Adapter (Broadcom, sold by Apple)... and while it installed the driver automatically, it did not work either. Each time you try to view the properties of either of them, it locks
    up or give an error. In fact, doing much of anything with the Intel adapter icon assures you of not being able to do a clean reboot... have to kill power.  I have finally gone back the previous version 9926, which has its issues but no where near as bad
    as not having any network connectivity!  Does anyone have this issue and a workaround? 
    Note, there are two images on the windows 10 preview forum that I posted this question on. I could not post the full link as I was getting a message here that links and graphics are not allowed.

    Thanks Roger, I posted the following yesterday in the other thread (thinking it was this thread - confusing after they moved it here)... It may be that the new driver fixes the issue that 10041 has with it, but I have not tried that yet. If I do I will update
    this... Thanks!
    I have more information about this, which basically exonerates any issue with the Intel 82579V Gigabit Ethernet hardware or software. I have 3 computers with Windows 10 preview so I have multiple angles to see issues from. With this I have found a culprit
    (but I suspect not just the only culprit) in this above mentioned problem...
    10041 build combined with installing (or attempting to install) CISCO VPN Windows 7 64bit 5.0.07.0440-k9 client causes the issue mentioned above. I confirmed this on a completely different machine with a totally different Ethernet adapter. First machine
    is an ASUS motherboard in a tower system I built, with the Intel 82579V Gigabit Ethernet hardware built in. Second machine is a Gateway Laptop from 2008 which has a Marvell Yukon 88E8057 PCI-E Gigabit adapter built in. Build 10041 will work fine with my 2008
    laptop, including the MS VPN client (which I have tested). However, if you attempt to install or even uninstall the Cisco client you will have to do a recovery to a restore point (as I have done twice) in order to get your network working again. Installing
    or attempting to install (because it never even does install properly and times out), CISCO VPN client will render your entire network unusable. Going back to a restore point saved me and I am still running 10041 but I can't use CISCO VPN client any longer.
    I could with build 9926, including on all 3 machines. I now have 9926 on two machines and 10041 on only the 2008 laptop. 
    Hopefully this above information helps someone resolve the issue. I will also mention, even though my network is working on the 2008 laptop, I still can't go into the Control Panel\Network and Internet\Network Connections and right mouse click on the Marvell
    Yukon 88E8057 PCI-E Gigabit adapter icon. I get an error when clicking on Properties menu popup : "An unexpected error has occurred". So something is still up with my network adapter driver or windows software, but it could be a side effect of all
    that has happened with the Cisco software install attempts under 10041.
    Another note: CISCO Anyconnect also has the issue.

Maybe you are looking for

  • Skipping in one part when i play my movie in the dvd player

    i've created a one hour movie. in the middle it skips about ten seconds. this only happens on dvd players. a few times it didn't skip. when i rewind i can see the footage that it skips. i've tried re-capturing the footage as well as using different m

  • Solaris 10 64 bit and 64 bit JVM support for Weblogic Server 9.1

    Does the following configuration supported: Weblogic Server 9.1 Sun Solaris 10 (64 bit) Sun JVM 5.0 (64 bit) I could only find reference to 32 bit JVM on bea site. Any help is appreciated. Thanks

  • Error while starting tuxedo services.

    Hi all, when we try to start tuxedo whe get these messages in the ULOG: 133846.COPPCS!pp_cs_general.21129.3076462432.0: 07-19-2007: Tuxedo Version 8.1, 32-bit 133846.COPPCS!pp_cs_general.21129.3076462432.0: LIBTUX_CAT:262: INFO: Standard main startin

  • Lost iPad and want to turn off 3G plan

    Sadly I have lost my iPad and have no way to track it. I am paying for a 3G plan that has automatic renewal. How do I cancel that without the iPad to do it on?

  • Repeating problems (1) Many Missing Files; and (2) Downloading From iTunes

    I am having multiple issues with the iTunes store currently. I have spoken with an Apple Expert on August 14, 2010 (case number available if needed). Although he was very good at helping me to the best of his ability, he referred me to iTunes Store C