Synaptics enables / disables itself in a loop

I have GT70 2OD
Synaptics 18.1.30.4 08Oct14
Synaptics TouchPad V7.2
I recently installed the synaptic drivers and I can see that sometimes enter an enable/disable loop (I can see that is enabling and disabled both by the system tray icon and the led in the disable touchpad button below the spacebar).
Usually this flickering / loop starts on any of this two conditions:
1) Directly after at startup
2) If I press the Disable touchpad button below the spacebar
3) If I press Fn+F3
Usually the loop ends when I press the Windows key a couple of times and I manage to go the Start screnn then the flickering stops and I'm able to reenable the touchpad via
Control panel / Change mouse settings/ Device Settings/ Enable (using the keyboard to get there, since the touchpad is disabled).
Does anybody know how to fix it or why it's happening?

I upgraded the firmware to version 1516  (2014-10-15) and that solved the problem, no more enabling / disabling in a loop, no more flickering of the led.

Similar Messages

  • Presenter 7 add-in disabled itself in PPT 2010 can't enable it

    I have the Acrobat X Suite (including Adobe Presenter). I upgraded to Office 2010.
    The Adobe Presenter menu item stopped appearing when I opened Powerpoint .
    I uninstalled Presenter and downloaded Presenter 7.07 and installed it as a trial. I then used the installer for Presenter in the Acrobat X Suite to apply the license key.
    Everything worked fine for awhile and then the Presenter add-in disabled itself.
    I tried to enable it with no luck. I went through the whole process that I just described again (uninstalling, downloading, re-installing as a trial, and then running the install from Acrobat X Suite for Presenter, and I still can't enable the Presenter add-in (though it appears on the add-in list--as disabled). I'd appreciate help. I have some files I need to re-publish for a course.
    Thanks. Susan

    Launch PPT.
    Select the File menu
    Select PowerPoint Options
    Choose the Add-Ins section
    At the bottom you should see a Manage: option with a drop down menu
    Select the Disabled items option and click Go.
    Select Presenter and then Enable
    Close and restart PPT.
    Keep an eye on the messages that come up if PPT crashes again, and if you see the "There was a problem with the Presetner plug-in, do you want to disable it?" dialog, say no.

  • How to use a radio button in enabling/disabling a text box in report progra

    Hi,
        Could any please let me know, how to use a radio button in enabling/disabling a text box in report program.

    *& Report  ZMR_RADIO_BUTTONS
    REPORT  ZMR_RADIO_BUTTONS.
    PARAMETERS : R1  RADIOBUTTON GROUP G1,
                 R2  RADIOBUTTON GROUP G1.
    PARAMETERS : A1 TYPE I,
                 A2 TYPE I.
    AT SELECTION-SCREEN OUTPUT.
    *initialization.
    IF R1 = 'X'.
    LOOP AT SCREEN.
    IF SCREEN-NAME = 'A1'.
       SCREEN-INPUT = 0.
        SCREEN-ACTIVE = 0.
    ENDIF.
    IF SCREEN-NAME = 'A2'.
       SCREEN-INPUT = 0.
        SCREEN-ACTIVE = 1.
    ENDIF.
    ENDLOOP.
    ENDIF.
    IF R2 = 'X'.
    LOOP AT SCREEN.
    IF SCREEN-NAME = 'A1'.
       SCREEN-INPUT = 0.
        SCREEN-ACTIVE = 1.
    ENDIF.
    IF SCREEN-NAME = 'A2'.
       SCREEN-INPUT = 0.
        SCREEN-ACTIVE = 0.
    ENDIF.
    modify screen.
    ENDLOOP.
    ENDIF.
    START-OF-SELECTION.
    *IF R1 = 'X'.
    *LOOP AT SCREEN.
    IF SCREEN-NAME = 'A1'.
       SCREEN-INPUT = 0.
       SCREEN-ACTIVE = 1.
    ENDIF.
    *ENDLOOP.
    *ENDIF.
    *IF R2 = 'X'.
    *LOOP AT SCREEN.
    IF SCREEN-NAME = 'A2'.
       SCREEN-INPUT = 0.
       SCREEN-ACTIVE = 0.
    ENDIF.
    *ENDLOOP.
    *ENDIF.

  • Enabling/disabling buttons problem

    Hello,
    I'm using jdev 10.1.3.3.0 and I want to enable/disable buttons based on the value in a tableSelectOne. I wrote a function isNextButtonEnabled() in my backing bean and I have set the disabled option of the nextButton (=CoreCommandButton) to #{!backing_bean.nextButtonEnabled}. Then I putted the autoSubmit option of the TableSelectOne to true and made a partialTrigger on the nextButton to the TableSelectOne. In the print statements everything is fine, but it is never displayed.
    Does anyone know what to do about this.

    Well,
    the nextButton is in a cellFormat which on itself is in a HtmlRowLayout. I putted partial triggers on the cellformat, the rowLayout and the panelPage to the TableSelectOne, but this doesn't do the trick neither. Strange.

  • Cl_wd_table - enable/disable certain cells

    Hello together,
    I'm looking for a good solution to enable/disable certain cells in a table.
    For example I have the following table (the real table is more complex - with buttons and so on...):
    User
    ToDo
    State
    A
    Todo1
    Done
    B
    Todo2
    In Process
    A
    Todo3
    In Process
    B
    Todo4
    Done
    I have different users which are working on this tabe:
    - Administrator: Can edit whole table (except State column)
    - Employee: Can only edit State Column where he is assigned
    I think it would be difficult to work with context attributs in this case?
    Is it possible to Loop over all table lines an set "enabled" Attribut in the coding?
    Best Regards

    Hi Uwe,
    Check this below links
    How to edit conditionally row of a ALV table in Web Dynpro for ABAP
    ABAP WebDynpro: Can edit a cell in a column?
    Thanks
    KH

  • Automatically enable disabled jobs again

    Hi, in our company some jobs are executed during night which should be finish by next morning due to DB performance during daytime.
    But sometimes they didn't run during night and the job status is DISABLED next morning.
    Next morning all jobs cann be enabled manually without an error message.
    Questions:
    1) why do they get status DISABLED?
    2) is there a possibility to change the status of a job back to SCHEDULED automatically to force executing the jobs during night?
    Thank you very much for helpling!

    Hi, thank you very much for your very quick answer!
    - yes, we are talking about DBMS_SCHEDULER jobs created with exec DBMS_SCHEDULER.create_job ...
    - we do not get status BROKEN - the status is DISABLED, and ALL jobs didn't run during nighttime at all
    - there are no error messages reported selecting * from ALL_SCHEDULER_JOB_RUN_DETAILS where JOB_NAME = '<jobname>' and LOG_DATE > trunc ( sysdate - 1 ) order by LOG_DATE desc;
    - also no error messages selecting * from ALL_SCHEDULER_JOB_LOG ...
    You propose to execute following code all day and nigtht to 'wake up' jobs with status DISABLED:
    Begin
    For i in (select job_name from dba_scheduler_jobs where state='DISABLED')
    Loop
    dbms_scheduler.enable(name=>i.job_name);
    End Loop;
    End;
    We tried this solution already - using this code in a new job.
    But it didn't work as I wrote already that ALL jobs have status DISABLED next morning - also this new job.
    Therefore this new job didn't 'wake up' the other jobs with status DISABLED.
    How do you think it is possible to execute this code as well?
    Starting it in a SqlPlus session?
    That means that this session may not be closed - if closed, the code isn't executed anymore!
    And what about DB shutdown and startup? Then the SqlPlus session with this code has to be started manually again -> this is not a good solution.
    Is there another opportunity to execute this code in a better way than using a SqlPlus session?
    Thank you!

  • Updater fails 9.1.1 to 9.1.2 - msg "re-enable disabled components"

    Adobe reader 9.1.1 won't update itself via updates, nor will the stand alone updater work.
    The "re-enable disabled components" message referred to with other products pops up.
    I've deleted the app.  Deleted all pref and lib/app support files.  Reinstalled, and hit the same wall.
    The computer is PPC running 10.5.7.
    The HD is formatted w/ a case-sensitive journaled HFS.

    Michael:
    Thanks for your speedy reply.
    Adobe Reader has worked atop case sensitive file systems for me for some time.  I began using them in 10.4 Tiger, though they were introduced as an option going back to 10.3 Panther, which was released to the public 10/2003, and developers like Adobe  before that.
    If the file system is not supported then it should be clearly, and prominently noted on the download page, and perhaps a warning in the installer (if the installer can't itself test for the presence/type of file system and put up some dialog box warning of pending difficulties).
    While I don't use/have no need for the CS, I'm aware of the issues Adobe had w/ the CS suite and case sensitivity (it was just reported in the mac news) but I don't ever recollect seeing that Reader was affected.  Certainly finding out that this is the case by doing google searching, troubleshooting, and help forums takes a distant rear seat to getting warned up front.
    Just to make sure, I went to the download page (no warning), went to system requirements (no warning), and opened up the files that are downloaded (and again, no warning in the installers).
    As a layperson I have trouble imagining that the coding/development of a PDF reader would be inconsistent to the  point that it breaks down trying to point to its own components..but that is probably an oversimplification.
    Hope that it is resolved, and that until then appropriate warnings are offered to end users.
    Thanks again for your time and interest.

  • Script to enable/disable audio/videotracks

    Hi,
    Trying this:
    function SwitchOffVideoOutput (vtracks,activeSeq)
           var active_seq = activeSeq;
           var videotracks = active_seq.videoTracks;
           alert("numTracks: "+ videotracks.numTracks);
           track = vtracks.split("|");
           for (i=0; i <= track.length; i++) {
          alert("Switching off: "+ track[i]);
          // Would like to do something like this:
          // videotracks[track].enabled=false;
          // videotracks[track].output=false;
          // Renaming sequence from A to B
          tmp = active_seq.name;
          tmp = tmp.replace("_A","_B");
          alert(tmp);
          //active_seq.name = tmp;
    SwitchOffVideoOutput ("2|3|4",app.project.activeSequence);
    // But also would like to do this:
    var myColl = app.project.selection;
    for (i=0; i <= myColl.length; i++) {//loop through the project
         alert(myColl.name)
         SwitchOffVideoOutput ("2|3|4",myColl.name);
    // SwitchOffVideoOutput and rename selection in Premiere Pro

    Although you can set or remove the Dark interface style with defaults write syntax, the reset back to default (non-dark) interface will require a log-out/log-in cycle to entirely remove the Dark style. Toggling this style on and off in the System Preferences > General panel does not require the preceding log-out disruption. Unfortunately, other than possible GUI scripting, the Apple Script dictionary in Yosemite is very limited with respect to System Preferences access, and enabling/disabling the dark interface style.

  • Microsoft Shadow Copy Service disables itself when trying to run backups.

    I am running Vista Business SP2 and Symantec System Recovery 2013 on my Dell Optiplex GX620 Work Station and my Latitude D830 Laptop. My automatic backups constantly fail due to the fact that the Microsoft Shadow Copy Service continually disables itself.
    When I go in and manually reset the service to "Manual" where it belongs, the backups work fine. My problem is I can't find out why the Shadow Copy Service continually disables itself. I have found through trial that it has nothing to do with the
    antivirus/antimalware program I am running which is Webroot "Secure Anywhere". I have spent many hours with Norton Enterprise Technical Support and they cannot locate the issue within their product. They are certain it is a Microsoft issue. Same
    whith the Webroot people. I have not been successful in getting any answers out of Microsoft. I have talked to techs who either want too much money to handle my problem or there are techs who have given me solutions that do not work. I have all but given up
    on Microsoft for assistance with this issue. I have read everything I can find in the Knowledge Base, and what has been written here. I still am in a quandry as to what is causing the shadow service to disable. At present I have no automatic backup system.
    I am forced to run it manually because of this issue. I consider this a sad senario in this technical climate in which we live. If anyone out there has the slightest idea as to what could be causing my problem please help! I am open to any solution at this
    point. Thanks All!  Paul J. Wiekierak ([email protected])

    Hi pwiekier,
    Can you find any warnings or errors related to this ?
    I suspect this is a third party service conflict issue.I recommend you to perform a clean boot to have a troubleshoot.
    Please follow these steps to perform a troubleshoot:
    1.Search "Msconfig.exe" from the start menu
    2.Choose "Services" item
    3.Choose "Hide all Microsoft services " and choose"Disable all"
    4.Click "OK" and Restart
    And then check this service ,if the issue disappeared, it is a  third party service conflict issue.
    We can make a further analysis by enabling the third party service with dichotomy to find out  the culprit.
    Best regards

  • Enable / Disable selection screen block

    Hi, could u pls tell me how do I enable/disable selection screen block written below based on radio button selected??
    Block to be enabled / disabled :
    *----APO Version and RFC destination block
    SELECTION-SCREEN BEGIN OF BLOCK b4 WITH FRAME TITLE text-013.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 01(20) text-e11.    "APO Planning Version
    SELECTION-SCREEN POSITION 29.
    SELECT-OPTIONS s_apover FOR w_version NO INTERVALS.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 01(20) text-e09.    "APO RFC Destination
    SELECTION-SCREEN POSITION 32.
    PARAMETERS  :  p_aporfc LIKE rfcdes-rfcdest.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK b4.
    Radiobuttons :
    Material Type
    SELECTION-SCREEN BEGIN OF BLOCK ss04 WITH FRAME TITLE text-072       .
    PARAMETERS :
         Load only FERTs
           p_FERT  RADIOBUTTON GROUP styp DEFAULT  'X' USER-COMMAND rusr ,
         Load ROH/HALBs
           p_HALB  RADIOBUTTON GROUP styp                                .
    SELECTION-SCREEN END   OF BLOCK ss04                                 .
    Thanx in advance

    Hi
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS: pa_file TYPE rlgrap-filename MODIF ID abc,
    pa_lifnr TYPE lfa1-lifnr MODIF ID abc,
    pa_vkorg TYPE vbak-vkorg MODIF ID abc.
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
    PARAMETERS: pa_kunnr TYPE vbak-kunnr MODIF ID def.
    SELECT-OPTIONS: s_lifnr FOR gs_lfa1-lifnr MODIF ID def,
    s_date FOR gs_lfa1-erdat MODIF ID def,
    s_augru FOR gs_vbak-augru MODIF ID def,
    s_vbeln FOR gs_vbak-vbeln MODIF ID def.
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-003.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: pa_upd RADIOBUTTON GROUP g1 USER-COMMAND uc01 DEFAULT 'X'."#EC *
    SELECTION-SCREEN COMMENT 3(60) text-004 FOR FIELD pa_upd.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: pa_rep RADIOBUTTON GROUP g1 ."#EC *
    SELECTION-SCREEN COMMENT 3(60) text-005 FOR FIELD pa_rep.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK b3.
    IF pa_rep EQ gc_x.
    LOOP AT SCREEN.
    IF screen-group1 = gc_abc.
    screen-input = gc_zero_num.
    ELSEIF screen-group1 = gc_def.
    screen-active = gc_one_num.
    ENDIF.
    MODIFY SCREEN.
    ENDLOOP.
    ELSEIF pa_upd EQ gc_x.
    *For Reprocessing
    LOOP AT SCREEN.
    IF screen-group1 = gc_def.
    screen-input = gc_zero_num.
    ELSEIF screen-group1 = gc_abc.
    screen-active = gc_one_num.
    ENDIF.
    MODIFY SCREEN.
    CLEAR pa_upd.
    ENDLOOP.
    ENDIF.
    REPORT zrich_001.
    PARAMETERS: p_rad1 RADIOBUTTON GROUP grp1 DEFAULT 'X'
                            user-command chk,
                p_rad2 RADIOBUTTON GROUP grp1.
    SELECT-OPTIONS: s_datum1 FOR sy-datum MODIF ID d1,
                    s_datum2 FOR sy-datum MODIF ID d2.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF p_rad1 = 'X'
          AND screen-group1 = 'D2'.
          screen-active = '0'.
        ENDIF.
        IF p_rad2 = 'X'
         AND screen-group1 = 'D1'.
          screen-active = '0'.
        ENDIF.
        MODIFY SCREEN.
      ENDLOOP.
    Regards
    Anji

  • My ipod disabled itself for 23 million minutes. How can I fix it if I don't have itunes on my computer?

    My ipod disabled itself for 23 million minutes. How can I fix it if I don't have itunes on my computer?

    A computer with iTunes is not required
    If you have Find My iPhone enabled, you can use Remote Wipe to erase the contents of your device. If you have been using iCloud to back up, you may be able to restore the most recent backup to reset the passcode after the device has been erased.
    You need the iPod and iPad conencted to the interned and FindMyiPod turned on on the iPod an the iPad need to have the FindMyiPhone app installed. That now requires iOS 7 on the device.
    You can also wipe by on a computer/s browser, going to icloud.com>FindMyiPhone

  • Enabling & Disabling of THTMLB_OCA (Action)

    Hi Experts,
    We have a requirement - to enable & disable the Action (THTMLB_OCA) column based on some critetria.
    Say For Example: Compoent BT115QIT_SLSQ, Context Node - BTADMINI, Attribute - THTMLB_OCA (Action - Which can Delete or Take you to Item Detail).
    Now say - if the ORDERED_PROD is 'XXX' I want to Disable this Action (THTMLB_OCA).
    I tried in GET_I_THTMLB_OCA putting the rv_diabled = 'TRUE', but it doesnot work, as this is not like a normal input field.
    So I thought to disable the field property - so that the Action field will be empty  nothing can be done using that. So I tried to implement GET_P_THTMLB_OCA
    so based on the validation on the ORDERED_PROD - if I can control the Field property of THTMLB_OCA
      lv_iterator = collection_wrapper->get_iterator( ).
      lv_bo       = lv_iterator->get_current( ).
      lv_val      = lv_bo->get_property_as_string( 'ORDERED_PROD' ).
      CASE iv_property.
        WHEN if_bsp_wd_model_setter_getter=>fp_fieldtype.
            IF lv_val1 = 'XXX'.
              rv_value = space.
            ELSE.
              rv_value = cl_bsp_dlc_view_descriptor=>field_type_oca.
            ENDIF.
    ENDCASE.
    It works fine for the 1st Entry - the 1st line item.
    The Iterator - get_current always returns the 1st item, it is not going into the subsequest line items.
    Any thought process in this regard?
    Am I missing out something?
    Please Help!
    Thanks & Regards,
    tarak

    Hi Tarak,
    You can remove the On Click Action Buttons from individual rows by redefining method GET_OCA_T_TABLE of the Context Node Class.
    This method gets triggered for every row of the table view(check the signature of the method). Identify your condition here and call the super class using
    CALL METHOD super->get_oca_t_table
        EXPORTING
          iv_component = iv_component
          iv_index     = iv_index
        RECEIVING
          rt_actions   = rt_actions.
    Now simply disable the buttons from rt_actions.
    FIELD-SYMBOLS: <fs_actions> TYPE crmt_thtmlb_one_click_action.
    LOOP AT  rt_actions ASSIGNING <fs_actions>.
    <fs_actions>-active  = abap_false.
    ENDLOOP.
    Regards,
    Masood Imrani S.

  • SelectOneMenu disables itself after facesMessage

    Hello All,
    I have been working this for a while now and not really sure how to get around it. I have a SelectOneMenu populated with selectItems inside a form. The required attribute is set to true and the requiredMessage attribute is set to "Please select a position". The form elements (including the selectOneMenu) is nested inside a rich:modalPanel.
    What happens is that since the selectOneMenu is required the messages fire--the expected behavior BUT the selectOneMenu for some reason also disables itself. Now, I am thinking that this "disabled" quality of the selectOneMenu has something to do with the component loosing it value and/or selectItems values--not sure though. The applicable code is listed below:
    <rich:modalPanel id="groupsAddPanel" width="500" height="450" style="background-color: #EEEECB;" 
    binding="# {membersHandler.addNewMembers}">
                    <f:facet name="header">
                        <h:panelGroup>
                            <h:outputText id="groupsAddPanelHeaderText"
                                          value="#{membersHandler.addMembersHeaderLabel}"/>
                        </h:panelGroup>
                    </f:facet>
                    <f:facet name="controls">
                        <h:panelGroup>
                            <h:graphicImage value="/images/close.png"
                                            style="cursor:pointer" id="hidelinkAddGroups"/>
                            <rich:componentControl for="groupsAddPanel"
                        attachTo="hidelinkAddGroups"
                                                    operation="hide" event="onclick"/>
                        </h:panelGroup>
                    </f:facet>                          
                    <a4j:region id="groupsAddRegion">
                        <a4j:form id="groupsAddForm" ajaxSubmit="true" rendered="true" status="groupAddStatusId" >
                            <h:panelGroup id="groupsAddPanelGroup" rendered="true" >
                                <table cellpadding="3" cellspacing="0" border="0" id="addGroupsTable"
                                       style="background-color: #EEEECB;" >
                                    <tr>
                                        <td class="groupsTdLables">
                                            <h:outputText id="posLblGroupsAddForm" value="Position: "/>
                                        </td>
                                        <td colspan="3" class="addGroupsInputs">
                                            <h:selectOneMenu id="positionDropDown"                                                         
                                                             valueChangeListener="#{membersHandler.positionSelected}"
    required="true"
                                                             requiredMessage=" Please select a position!"
                                                             value="#{membersHandler.dirtyMembers.srpMemLuId}"
                                                             binding="#{membersHandler.membPosHtmlSelectOneMenu}">
                                                <f:selectItems value="#{membersHandler.generalSelectItem}"
                                                               binding="#{membersHandler.membPosSelectItems}"/>
                                                <a4j:support event="onchange" reRender="positionDropDown"/>
                                            </h:selectOneMenu>                                       
                                        </td>
                                    </tr>
                                </table>                  
                                <h:panelGrid id="groupsAddPanelButtonsPanelGrid" columns="3" style="text-align:center; width:100%;">
                                    <a4j:commandButton id="saveLinkAddGroupsPanel"  value="#{srpBundle.hlinkSave}" 
                                                       styleClass="buttons01" status="groupAddStatusId"
                                                       rendered="true" action="#{membersHandler.saveNewRow}"
                                                       onclick="this.value='Processing...'; this.disabled=true;"
                                                       oncomplete="windowclose();">
                                        <a4j:support event="onclick" reRender="addGroupsTable"/>
                                    </a4j:commandButton>
                                    <rich:spacer id="blankspaceId" width="200px;" />
                                    <a4j:commandButton id="cancelLinkAddGroupsPanel"  value="#{srpBundle.hlinkCancel}"
                                                       styleClass="buttons01" status="groupAddStatusId"
                                                       rendered="true" reRender="facStudRotcForm" immediate="true">
                                        <rich:componentControl id="richCmptCntrlCancelAddGroupsPanel" for="groupsAddPanel"                          attachTo="cancelLinkAddGroupsPanel"      
                        operation="hide" event="onclick"/>
                                    </a4j:commandButton>
                                </h:panelGrid>
                            </h:panelGroup>
                        </a4j:form>
                        <a4j:status id="groupAddStatusId" startText="One Moment Please..."
                   stopText="Ready!" style="text-align: center; font-size: 14px; font-weight: bold;"/>
                    </a4j:region>
                    <rich:messages id="richMessagesBaseForm2"
                                   binding="#{membersHandler.htmlRichMessages}"
                                   style="text-align: left"
                                   passedLabel="Data is allowed to be stored."
                                   layout="list">
                        <f:facet id="richMessagesBaseFormFacetHeader" name="header">
                            <h:outputText id="baseFormOutPutText" value="Entered Data Status:"></h:outputText>
                        </f:facet>
                        <f:facet  id="richMessagesBaseFormFacetPassed" name="passedMarker">
                            <h:graphicImage id="baseFormImagePassed" value="/images/passed.gif"/>
                        </f:facet>
                        <f:facet  id="richMessagesBaseFormFacetError" name="errorMarker">
                            <h:graphicImage id="baseFormImageError" value="/images/error.gif"/>
                        </f:facet>
                    </rich:messages>
    </rich:modalPanel>I didn't see a need to post the valueChangeListern method because according to my debugger I never get there. The require=true attribute
    doesn't let the valueChangeListerner fire.
    Any ideas?

    place your select one menu in Ajax enable ajaxouputpanel and assign id to that component and re render the ajaxoutputpanel i hope it will resolve your problem.
    AjaxOutputPanel
    like the code.
    <a4j:outputPanel layout="block" id="positionDropDown">
    <h:selectOneMenu  valueChangeListener="#{membersHandler.positionSelected}"
    required="true"
                                                             requiredMessage=" Please select a position!"
                                                             value="#{membersHandler.dirtyMembers.srpMemLuId}"
                                                             binding="#{membersHandler.membPosHtmlSelectOneMenu}">
                                                <f:selectItems value="#{membersHandler.generalSelectItem}"
                                                               binding="#{membersHandler.membPosSelectItems}"/>
                                                <a4j:support event="onchange" reRender="positionDropDown"/>
                                            </h:selectOneMenu>
    </a4j:outputPanel>Edited by: [email protected] on Sep 16, 2008 11:55 PM

  • Repeat one disables itself

    Hi, Repeat one functionality disables itself after I change the song. It works fine for one song, but does not persist for the next song. For example, when I turn it on while listening to song X, song X keeps repeating, which is fine. But then, if I switch to song Y (either through forward, rewind, or select through playlist), repeat one does not apply to song Y, and I have to enable it again to get it working for song Y. The issue seems specific to Android, as repeat one works fine on my Spotify Desktop. Your deviceGalaxy S4. What type of account do you have?Premium Did you manually install an older version before installing the latest version from the Play Store?No My mobile Spotify version3.0.0.1124

    Hello 
    Sorry for the late reply.
    I am not the developer who added it into the mobile app, but this behavior is intended.
    Let's say you are playing a song from a playlist and you want to listen to it over and over again.
    You then open the now playing view and tap on repeat until it goes to repeat one.
    Since you want to keep listening to that song you close out of the Spotify app and carry on whatever else you are doing.
    If you then decide to play another song or continue on with the playlist, the repeat one option is turned off.
    I think this is intended because usually you don't just want Spotify to repeat one every song you tap on.
    If it so happens that you want a certain song on repeat one, then you would just go to the now playing screen and turn repeat one on.
    It would be a hassle to leave repeat one on because when you want to play a different song or continue playing the rest of the playlist, you would have to go to the now playing screen EVERY SINGLE TIME and turn off repeat one so you can continue listening without the app repeating the next song that you chose, over and over again.
    The desktop app keeps the repeat one on because the button is always in view and easy to turn on and off. It's not so easy in the mobile apps.
    Hopefully my thoughts are helpfult.

  • Ipod touch has disabled itself and wont disable or connect to itunes, help?!

    my ipod touch decided to disable itself and now it has a pass code which i didnt enable and now it wont connect to itunes, and i dont want to restore factory setting because i dont want to lose £100 worth of music i bought on my ipod that wont sync to my laptop. help!!

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen        
    If recovery mode does not work try DFU mode.
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    You can redownload iTunes pruchases without having to pay again by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

Maybe you are looking for

  • HT4241 How do I use the mini deplayport to hdmi

    How do I use the mini displayport to hdmi on my tv?

  • Removing Apps from Mac and iPhone/iPad

    Hi all. Can someone advise the best way to completely remove unwanted apps please? The issue I have is that if I remove the app from my iPhone/iPad and then sync my phone with my iMac, the app just gets put back on the iPhone/iPad. If I remove it fro

  • Photo moves while using spot healing brush

    I've been using the spot healing brush basically on every photo but recently when I go to use it and press Option to get a clone source and then click my mouse the photo will move everywhere the mouse moves and not allow for a touch up. It doesn't ma

  • Easy ActionScript - helper Class for everyone

    I have put together a number of methods that help do common tasks in ActionScript 3 in an easier way. Providing powerful flexibility and consistency in AS3 is amazing but we have all probably grumbled at the steps involved in setting a color, a volum

  • To wait, or not to wait

    What I'm actually wondering is that, 1. What updates might happen to the new refresh of the iMac for 2009? 2. When would it be released? 3. Should I get an iMac or a MacBook Pro (I could get the best of either product)? 4. Which would be better at pl