ADDT Datepicker and spry validation don't work together

Datepicker and spry validation don't work together
the problem is in: /includes/wdg/classes/MXWidgets.js
(necessary to datepicker)
Does anyone have a solution??
Thanks

Hi Gabriele,
technically speaking, ADDT and the Spry framework have about nothing in common, and you´re going to stumble across many compatibility-related issues when trying to use them together.
Does anyone have a solution??
any regular user who´d like to provide a solution to this, would have to be a pretty skilled programmer and would have to know the "technical details" of both ADDT and SPRY very well to be of help -- I don´t think that you´ll find many folks here who are capable to do that.
However, why not making the date field required in ADDT ?
Cheers,
Günter Schenk
Adobe Community Expert, Dreamweaver

Similar Messages

  • ADDT Datepicker and Spry:region

    Using ADDT for a datepicker dropdown calendar, the following
    code works as expected:
    <form action="" method="post">
    <input name="test" id="test" value="06/02/2008"
    wdg:subtype="Calendar" wdg:mask="<?php echo
    $KT_screen_date_format; ?>" wdg:type="widget"
    wdg:mondayfirst="true" wdg:singleclick="true"
    wdg:restricttomask="yes" />
    </form>
    When I add a Spry region, the dropdown calendar does not
    work:
    <div spry:region="ds1">
    <form action="" method="post">
    <input name="test" id="test" value="06/02/2008"
    wdg:subtype="Calendar" wdg:mask="<?php echo
    $KT_screen_date_format; ?>" wdg:type="widget"
    wdg:mondayfirst="true" wdg:singleclick="true"
    wdg:restricttomask="yes" />
    </form>
    </div>
    Anyone have a solution please.
    Ben

    Anyone??

  • Spry and custom Javascript don't work together

    I'm using Spry form field validation, but also need to do some more specialized input checking. I've tried to add some custom Javascript to do this, but now my Spry stuff doesn't work!  Is there a way to combine the two -- Spry + custom Javascript? (testing in Safari) 
    Here's a very simplified example:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Test Doc</title>
    <script src="../SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
    <link href="../SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css" />
    <script language="javascript" type="text/javascript">
    <!-- Hide script from old browsers
    function procform(f) {
    if (f.name.value =="test") {
    alert("You entered the word 'test' ")
    return false
    // End hiding script -->
    </script>
    </head>
    <body>
    <form id="form1" name="passForm" method="post" action="#" onsubmit="return procform(this)">
    <span id="sprytextfield1"><span class="textfieldRequiredMsg">A value is required.</span></span>
    <input type="text" name="name" id="name" />
    <input type="submit" name="submit" id="submit" value="Submit" />
    </form>
    <script type="text/javascript">
    <!--
    var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1");
    //-->
    </script>
    </body>
    </html>

    jrcatfan wrote:
    Phone works great when connected to Bluetooth in car and I can talk hands free.  When I use the Map app that came with the phone, I can't hear the verbal directions. My old Blackberry worked great with Bluetooth and I could hear verbal directions and also answer the phone when it rang. Verbal directions would be silent until I hung up the phone call.
    My car radio has 2 separate Bluetooth input source's. Phone and Music A2DP, verbal directions can only be heard when Music source is selected.

  • TP4 - PPR and af:subform don't work together

    Hello,
    I have a form (enclosed in a af:subform) that is refreshed by PPR from a table. If I don't use af:subform PPR works correctly, but if I use af:subform only af:inputText that have readOnly="true" gets refreshed.
    I need subform because I have required fields and I need validation to happen only when save on that subform occurs.
    This behaviour was in TP3 too.
    Is there a workaround for this?
    Thanks,
    Dan.
    Message was edited by:
    Dan Rece

    Here is a sample of code:
    A simple bean (I don't add getters and setters):
    package test;
    public class Person
      private Integer id;
      private String name;
    }Managed bean class:
    package test;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    import oracle.adf.view.rich.component.rich.data.RichTable;
    import org.apache.myfaces.trinidad.event.SelectionEvent;
    public class ManagedBean
      private List<Person> rows;
      private Person selectedPerson = new Person();
      public ManagedBean()
        rows = new ArrayList<Person>();
        rows.add( new Person( 1, "Mike" ) );
        rows.add( new Person( 2, "Luke" ) );
        rows.add( new Person( 3, "John" ) );
      public List<Person> getRows()
        return rows;
      public void setSelectedPerson(Person selectedPerson)
        this.selectedPerson = selectedPerson;
      public Person getSelectedPerson()
        return selectedPerson;
    }jspx file:
        <af:document maximized="false">
          <af:form>
            <af:panelGroupLayout layout="vertical">
              <af:panelBox text="Persons">
                <af:table id="persons"
                          value="#{managedBean.rows}"
                          contentDelivery="immediate"
                          columnSelection="none"
                          rowSelection="none"
                          var="row">
                  <af:column sortable="false" headerText="Id" align="start">
                    <af:outputText value="#{row.id}"/>
                  </af:column>
                  <af:column sortable="false" headerText="Name" align="start">
                    <af:outputText value="#{row.name}"/>
                  </af:column>
                  <af:column sortable="false" headerText="Edit">
                    <af:commandLink partialSubmit="true"
                                    id="edit_link"
                                    shortDesc="Edit item '#{row.id}'">
                      <af:setActionListener from="#{row}" to="#{managedBean.selectedPerson}" />
                      <af:image source="/common/images/edit.gif" />
                    </af:commandLink>             
                  </af:column>
                </af:table>
              </af:panelBox>
              <af:spacer height="5" />
              <af:panelBox text="Edit 1" partialTriggers="persons:edit_link">
                <af:subform id="edit_subform_1">
                  <af:panelFormLayout>
                    <af:inputText value="#{managedBean.selectedPerson.id}" readOnly="true"/>
                    <af:inputText value="#{managedBean.selectedPerson.name}" />
                  </af:panelFormLayout>
                </af:subform>
              </af:panelBox>
              <af:spacer height="5" />
              <af:panelBox text="Edit 2">
                <af:subform id="edit_subform_2">
                  <af:panelFormLayout partialTriggers="::persons:edit_link">
                    <af:inputText value="#{managedBean.selectedPerson.id}" readOnly="true"/>
                    <af:inputText value="#{managedBean.selectedPerson.name}" />
                  </af:panelFormLayout>
                </af:subform>
              </af:panelBox>
              <af:spacer height="5" />
              <af:panelBox text="Edit 3">
                  <af:panelFormLayout partialTriggers="persons:edit_link">
                    <af:inputText value="#{managedBean.selectedPerson.id}" readOnly="true"/>
                    <af:inputText value="#{managedBean.selectedPerson.name}" />
                  </af:panelFormLayout>
              </af:panelBox>
            </af:panelGroupLayout>
          </af:form>
        </af:document><managed-bean>
    <managed-bean-name>managedBean</managed-bean-name>
    <managed-bean-class>test.ManagedBean</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    </managed-bean>
    There are 3 ways of refreshing edit form in this jspx file. If you run it you will notice that only latest panel box (the one without af:subform works correctly).
    In the first two... only the first field is refreshed correctly.
    Thanks,
    Dan
    Message was edited by:
    Dan Rece
    Message was edited by:
    Dan Rece
    Message was edited by:
    Dan Rece

  • G5 Quad (Geforce 6600) and Dell 2405fpw don't work together

    I purchased both (G5 Quad (Geforce 6600) and Dell 2405fpw) brand-new a few days ago.
    When I connect the display using the supplied DVI->VGA cable, the display works. When I connect them using (about any type of) DVI-D cable, I get no picture. The dell screen just stays in stand-by mode. BUT it gets detected (I can see this when I connect a second screen). And the screen show a test image when I disconnect it from the mac, so there's at least SOMETHING happening...
    What is wrong here?
    I am first-time Mac user and on edge to go to the PC/Unix world again, without ever looking back to apple-land, because of this, as it is SERIOUSLY SCREWING UP christmas for us this year.
    Thanks for your help.

    Actually ``detect displays'' found the screen, that was what I meant in my first post.
    The issue is kinda solved now, the DVI-Port of the ``brand-new'' display, which was delivered directly from the Dell factory in Limerick, is non-functional.
    I tried it with a different setup (PC) and see the same symptoms, which lead me to this conclusion. I will get a full refund and possibly buy a 3007WFP if the price is decent.
    It should work with a Geforce 6600 - even at 2560x1600.
    Thanks,
    Robert
    PowerMac G5 Quad Mac OS X (10.4.3)

  • Named View Criteria and Range paging don't work together

    Hi,
    I am using a named view criteria for a view whose access mode is set to range paging.
    When I use the named view criteria on my page to do a search I am getting the below error. If I don't use range paging as access mode for the view I don't get this error. Looks like when I use the search it doesn't pass the row numbers properly and they are not set in the query.
    Is this a known issue or am I missing something?
    Thanks
    SQL error during statement preparation.  Statement: Select *
      From (Select /*+ FIRST_ROWS */
             IQ.*, ROWNUM As Z_R_N
              From (Select Persons.PRINCIPAL_NAME,
                           Persons.PERSON_ID,
                           Persons.TITLE,
                           Persons.FIRST_NAME,
                           Persons.LAST_NAME,
                           Persons.PHONE_NUMBER
                      From PERSONS Persons
                     Where ((((UPPER(Persons.FIRST_NAME) Like UPPER('%' || :p_name || '%')) Or (:p_name Is Null))))) IQ
             Where ROWNUM < :1)
    Where Z_R_N > :2
    Missing IN or OUT parameter at index:: 4 Message was edited by:
    Muhammed Soyer

    Hi Frank,
    I didn't test it in 10g. It was something that I came across and thought that it might be a known issue..
    The query is not something that I built manually. My entity is created from a table and my view is using the entity. I added a Named Criteria to the view and used Range Paging as access mode for the view.
    The actual query is this
    SELECT Persons.PRINCIPAL_NAME,
           Persons.PERSON_ID,
           Persons.TITLE,
           Persons.FIRST_NAME,
           Persons.LAST_NAME,
           Persons.PHONE_NUMBER
    FROM PERSONS Persons

  • Bluetooth and Z10 speaker don't work together

    Phone works great when connected to Bluetooth in car and I can talk hands free.  When I use the Map app that came with the phone, I can't hear the verbal directions. My old Blackberry worked great with Bluetooth and I could hear verbal directions and also answer the phone when it rang. Verbal directions would be silent until I hung up the phone call.

    jrcatfan wrote:
    Phone works great when connected to Bluetooth in car and I can talk hands free.  When I use the Map app that came with the phone, I can't hear the verbal directions. My old Blackberry worked great with Bluetooth and I could hear verbal directions and also answer the phone when it rang. Verbal directions would be silent until I hung up the phone call.
    My car radio has 2 separate Bluetooth input source's. Phone and Music A2DP, verbal directions can only be heard when Music source is selected.

  • Transition script and button script don't work together

    Hi
    I've been experiementing with actionscripting transitions
    between sections... this is the first site I have tried this with
    (last 3 had swf loaded in one after another rather than
    transitioned between). I used some code from kirupa.com which works
    for loading movies in and out, but I also have some code for my
    movie buttons. I can get one or the other working, but not
    together, so I guess I'm clashing code somewhere, I could do with
    some help please to find what I'm doing wrong...
    The transistion code and calling-up buttons is;
    Code:
    Menubar.b1.onRelease = function() {
    if (_root.section != "about.swf") {
    _root.section = "about.swf";
    _root.transition.gotoAndPlay("closing");
    Menubar.b2.onRelease = function() {
    if (_root.section != "portfolio.swf") {
    _root.section = "portfolio.swf";
    _root.transition.gotoAndPlay("closing");
    Menubar.b3.onRelease = function() {
    if (_root.section != "contact.swf") {
    _root.section = "contact.swf";
    _root.transition.gotoAndPlay("closing");
    and the code I have on my movie buttons is;
    Code:
    on (rollOver) {
    gotoAndPlay("rollover");
    on (releaseOutside, rollOut) {
    gotoAndPlay("rollout");
    Is there a way to combine them???
    Thanks. Wayne.

    your on(rollover) handlers are applied to buttons that are
    children of a movieclip that has handlers defined. the parent
    movieclip (Menubar.b1 etc) is going to intercept those mouse
    events.
    to remedy move you on(rollover) etc handlers to your
    movieclip buttons b1, b2 and b3 on MovMenu's timeline.

  • Lightroom 3 and Photoshop CS5 don't work together

    Hello,
    I recently updated from PS CS4 to PS CS5 and Lightroom 2.7 to Lightroom 3.
    Everything went smoothly and i'm very happy with performance overall.
    The only problem that i'm having is that now in Lightroom the "Edit in Photoshop" is greyed out. I can still edit the preferences for this option but i cannot choose the option when i want a photo to go to PS.
    I can still edit in Photoshop if i use it as an "another external edit program", but my question is how do i get the two programs aware again of each other?? So i can edit in photoshop as a smart object again. I updated ACR to the latest version.
    My computer runs a copy of Win7 64-bit Ultimate.
    Thanks
    Jan

    JanGeloen wrote:I guess these forums aren't so bad after all
    As long as you have protective body armour on, you're quite safe! 

  • IPhoto and Mountain Lion don't work together

    I consistently have problems with iPhoto and my entire computer locks up and runs at less than a snail's pace. I paid $15 to install iPhoto after upgrading to Mountain Lion and now wish I had stayed with Snow Leopard and the old iPhoto. Having to type this on my iPad while I wait for something to unlock on my computer. I am merely trying to export one image to my desktop and it's taken about 10 minutes. Apple - PLEASE fix this!

    There is no problem with iPhoto and Mountain Lion. You're not talking to Apple here, and as it's not happening to everybody else they're not going to fix it because you have a local problem.
    If you want help try give us a full description of the problem.
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. As full a description of the problem as you can. For instance: 'iPhoto won't export' is best explained by describing how you are trying to export, and so on.
    - History: Is this going on long? Has anything been installed or deleted?
    - Are there error messages?
    - What steps have you tried already to solve the issue.
    - Anything unusual about your set up? Or how you use iPhoto?
    Anything else you can think of that might help someone understand the problem you have.

  • UI Datepicker and Spry textfield Validation

    Hi, I am having a problem with using the UI Date picker and Spry textfield Validation together. I have created a sample form: 2 input boxe, the test box has the datepicker and spry validation and test2 has the date picker only,one submit button and some php code that echos the boxes values on submit.
    My date picker is date formated as 'yy-mm-dd' for four digit year.  My spry validation is formated 'yyyy-mm-dd' with validate on submit.
    Now when I click on the test input box the datepicker comes up normally and i select a date. I then select the date on test2. Once I click the submit button the test field with spry validation come back saying a value is required and nothing else happens.
    I was playing around and trying other things to get it to work and I noticed that when I select the test inputbox and the calander pops up if I enter some numbers into the text box then select a date from the datepicker then enter a date in the test2 inputbox and hit submit it works.
    So it appears to me that the validation is not reading anything in the test field when I just select a date.  Why is that?  When I select a date it shows a date in the inputbox.  It makes it hard to use the datepicker on a form.
    Any help would be a preciated.  Code is below.
    Thanks Winrol
    <?php echo "Test box 1 value = ". $_POST['test']. "<br/>" ?>
    <?php echo "Test box 2 value = ". $_POST['test2'] ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <script src="jquery-ui-1.7.2/js/jquery-1.3.2.min.js" type="text/javascript"></script>
    <script src="jquery-ui-1.7.2/js/jquery-ui-1.7.2.min.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
    <link href="jquery-ui-1.7.2/css/base/ui.core.css" rel="stylesheet" type="text/css" />
    <link href="jquery-ui-1.7.2/css/base/ui.datepicker.css" rel="stylesheet" type="text/css" />
    <link href="jquery-ui-1.7.2/css/base/ui.theme.css" rel="stylesheet" type="text/css" />
    <link href="jquery-ui-1.7.2/css/base/ui.datepicker.images.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    /* BeginOAWidget_Instance_2137022: #datepicker */
    #datepicker .ui-widget {
    font-family: inherit;
    #datepicker .ui-datepicker {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    #datepicker .ui-datepicker-title {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 1.1em;
    color: #000;
    font-weight: normal;
    line-height: 1.8em;
    #datepicker .ui-state-default, .ui-widget-content .ui-state-default {
    border-color: #e6e6e6;
    background-color: #e6e6e6;
    color: #555555;
    #datepicker .ui-state-default, .ui-state-default a {
    color: #555555;
    #datepicker .ui-state-highlight, .ui-widget-content .ui-state-highlight {
    border-color:#FCEFA1;
    background-color:#FCEFA1;
    color:#363636;
    #datepicker .ui-state-active, .ui-widget-content .ui-state-active {
    border-color: #FFFFFF;
    background-color: #FFFFFF;
    color: #212121;
    #datepicker .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus
    border-color: #5F5F5F;
    background-color: #5F5F5F;
    color: #212121;
    #datepicker .ui-widget-header
    border-color: #5F5F5F;
    background-color: #808080;
    border-width: 1px;
    /* Text attributes for the Days of Week Text */
    #datepicker .ui-datepicker table th
    font-size: .8em;
    color: #000;
    font-weight: bold;
    /* EndOAWidget_Instance_2137022 */
    </style>
    <script type="text/xml">
    <!--
    <oa:widgets>
      <oa:widget wid="2137022" binding="#datepicker" />
    </oa:widgets>
    -->
    </script>
      <script type="text/javascript">
    // BeginOAWidget_Instance_2137022: #datepicker
    $(function() {
    $('input').filter('.datepicker').datepicker({dateFormat: 'yy-mm-dd'});
    // EndOAWidget_Instance_2137022
      </script>
    <link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    body {
    background-color: #FFC;
    </style>
    </head>
    <body>
    <form id="form1" name="form1" method="post" action="">
      <p>
        <label for="test">test</label>
        <span id="sprytextfield1">
        <input name="test" type="text" class="datepicker" id="test"/>
        <span class="textfieldRequiredMsg">A value is required.</span><span class="textfieldInvalidFormatMsg">Invalid format.</span></span></p>
      <p>
        <label for="test2">test2</label>
        <input name="test2" type="text" id="test2"  class="datepicker" />
      </p>
      <p onclick="<?php echo $_POST['test'] ?>">
        <input type="submit" name="submit" id="submit" value="Submit" />
      </p>
    </form>
    <script type="text/javascript">
    var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1", "date", {format:"yyyy-mm-dd", hint:"yyyy-mm-dd"});
    </script>
    </body>
    </html>

    This does work
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet">
    <link href="jquery-ui-1.7.2/css/base/ui.core.css" rel="stylesheet">
    <link href="jquery-ui-1.7.2/css/base/ui.datepicker.css" rel="stylesheet">
    <link href="jquery-ui-1.7.2/css/base/ui.theme.css" rel="stylesheet">
    <link href="jquery-ui-1.7.2/css/base/ui.datepicker.images.css" rel="stylesheet">
    </head>
    <body>
    <form action="" method="post">
    <span id="sprytextfield1">
    <label for="mydate">Date:</label>
    <input id="datepicker" name="mydate" type="text">
    <span class="textfieldRequiredMsg">A value is required.</span><span class="textfieldInvalidFormatMsg">Invalid format.</span></span>
    <div id="datepicker" class="ui-glass-gradient ui-80TopTo0Bottom-gradient-header"></div>
    <input name="mysubmit" type="submit">
    </form>
    <script src="SpryAssets/SpryValidationTextField.js"></script>
    <script src="jquery-ui-1.7.2/js/jquery-1.3.2.min.js"></script>
    <script src="jquery-ui-1.7.2/js/jquery-ui-1.7.2.min.js"></script>
    <script>
    var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1", "date", {format:"mm/dd/yyyy", validateOn:["change"], useCharacterMasking:true});
    $(function() {
        $('#datepicker').datepicker({ showOtherMonths: false });
    </script>
    </body>
    </html>
    Gramps

  • Spry Validation widgets not working on local WAMP server

    I just started the process of creating a contact page. I got the client side done last night, woke up this morning and panicked. The spry validation widgets weren't working anymore. I re-did the entire page and realized it was only the contact.html page in the wamp directory that wasn't working. All the needed CSS and javascript assets are there and in the proper folders, so what's up?
    (I'm still in the middle of the lynda.com series Dreamweaver CS5 with PHP and MySQL , so I'm not even certain where I'm heading just yet. I'm doing stuff as I think I understand it.)

    OK, this is interesting. It works online, but not in local cache.
    Here's the contact page on my website: http://www.ladyhawkslair.com/contact.html (So far, GNDN: goes nowhere; does nothing.)
    And here's the WAMP version: http://www.ladyhawkslair.com/wamp/contact.html
    worky-worky online.
    No worky-worky when I preview in Firefox on my system.
    Wait. Hold that thought.
    I only refuses to work when I preview it in Firefox THROUGH Dreamweaver. Let me test again.
    Verified.
    The spry widgets don't work when I load them to Firefox WITH Dreamweaver. Interestingly, it works with IE.
    Any ideas, Gramps?

  • I spilled water on my laptop and my "i", "j" and "k" letters don't work on my laptop. However my main problem is that my password contains an "i" so i am locked out of my computer. Any ideas how I can get around the password and login.

    I spilled water on my laptop and my "i", "j" and "k" letters don't work on my laptop. However my main problem is that my password contains an "i" so i am locked out of my computer. Any ideas how I can get around the password and login. I tried the method where you go into single user mode and type in commands, however that method uses some of the letters that are not working on my laptop.

    You didn't mention which version of OS X your running but there are password reset utilities provided OS X: Changing or resetting an account password (Snow Leopard and earlier) - Apple Support  or  OS X: Changing or resetting an account password - Apple Support
    Alternately you can use an external keyboard to log in and change the password. Make a backup if you don't have one, it's likely that your problems aren't over. If that water continues to migrate downward and fries the logic board your macbook will be toast.

  • IPad 2 Rotation, Sleep, and Volume Buttons Don't Work.

    I have an iPad 2 running 7.1.1 (11D201) and just yesterday the sleep sleep and volume buttons don't work, and the screen won't rotate at all.  I have already tried the following:
    Switched the Lock Rotation/Mute settings in General
    Power cycling it
    Held the sleep and menu button to reset it (the button worked for that at least)
    Done a network reset
    Reset All Settings and restored from backup
    Reset All Settings and restored from iCloud
    Erase All Content and Settings and restored from backup
    Erase All Content and Settings and restored from iCloud
    If anyone has any OTHER suggestions besides what I've already tried, I am all ears.  Thanks.

    Go into Recovery Mode per the instructions here.  You WILL lose all of your data (game scores, etc,) but, for the most part, you can redownload apps and music without be charged again.  Also, if you have IOS-7, read this.

  • My Microsoft Intellimouse back and forward buttons don't work in Firefox, but they do in IE and in Windows Explorer. It used to work, now it just stopped. Why and how can I fix this?

    Forward and back buttons don't work in Firefox but do everywhere else.

    Make sure that you set those buttons to the default action in your mouse driver software (Control Panel > Mouse or specific Intellimouse driver software).

Maybe you are looking for

  • Gr and ir clearing

    hi, may i know why need to use F.13 to clear the GR and IR clearing account? why same clearing account in GR and IR not able to be cleared automatically when do miro? thanks

  • Many to Many dimension displays all the members regardless of bridge data

    Hi, I have already set up couple of many to many relationships in my cubes and all ran fine. Now I set up a new many to many relationship as follows: Fact- sales Dimension- customer Dimension- conference Bridge- (many 2 many)- ConferenceCustomers (ma

  • How do you add more than one song to library.....

    How do you add more than one song to the library using the "Add File to Library" option? I just upgraded to itunes 7.1.1.5 from an early version and used to be able to do this but now it want let me, it only lets me add one song at a time. I don't wa

  • T code for vendor,customer line item display

    we are using ecc 6.   I would like to know the wheter any tcode is available in ECC6 for cust and vendor line item display. NEW TCODE for FBL3N is FAGLL03. Like that any new new tcode is availbale for FBL1N & FBL5N? Please clarify. Thanks Rajesh

  • Dual HD4850's and a pcie x1 at the same time?

    Sup MSI..Heres a good question..I have a MSI K9A2 CF mobo and i would like to know if i can run dual cards in crossfire and a XFI pcie x1 sound card without problems?I know some motherboards when u plug in 2 video cards it disables teh pcie X1 slot.