You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ofbiz.apache.org by "Walter Vaughan (JIRA)" <ji...@apache.org> on 2007/01/22 20:13:29 UTC

[jira] Created: (OFBIZ-643) Previously entered item remains in entry box after pressing enter key or [add to order] button in https://host_name:8443/ordermgr/control/additem

Previously entered item remains in entry box after pressing  enter key or [add to order] button in https://host_name:8443/ordermgr/control/additem 
---------------------------------------------------------------------------------------------------------------------------------------------------

                 Key: OFBIZ-643
                 URL: https://issues.apache.org/jira/browse/OFBIZ-643
             Project: Apache OFBiz (The Open for Business Project)
          Issue Type: Improvement
          Components: order
    Affects Versions: SVN trunk
         Environment: Opera Netscape Firefox on Linux & XP, IE6 (probably IE7 as well) on XP
            Reporter: Walter Vaughan
             Fix For: SVN trunk


The un-intended behavior in tested web browsers with standard/default settings is that in https://host_name:8443/ordermgr/control/additem , when the operator enters a value it is retained afer the item is added to the cart. In a browser set to normal by today's standard (1024x732) with an "out of the box" setup of ofBiz, the operator has no notification that the item has been added other than the browser's throbber has stopped running. The piece of code in question is a input box generated by additem 

<input class="inputBox" size="25" name="add_product_id" value="" type="text">

Some sort of Javascript (ECMAScript) code to reset the field or the form is probably required. A more permanent solution might be to impliment some sort of ajax auto completion rather than just reseting the field with javascript.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (OFBIZ-643) Previously entered item remains in entry box after pressing enter key or [add to order] button in https://host_name:8443/ordermgr/control/additem

Posted by "Chris Liberty (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/OFBIZ-643?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Chris Liberty updated OFBIZ-643:
--------------------------------

    Attachment: OFBIZ-643.patch

Attached patch explicitly populates the productId inputs with an empty string, instead of the productId from the request parameters.

> Previously entered item remains in entry box after pressing  enter key or [add to order] button in https://host_name:8443/ordermgr/control/additem 
> ---------------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: OFBIZ-643
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-643
>             Project: Apache OFBiz (The Open for Business Project)
>          Issue Type: Improvement
>          Components: order
>    Affects Versions: SVN trunk
>         Environment: Opera Netscape Firefox on Linux & XP, IE6 (probably IE7 as well) on XP
>            Reporter: Walter Vaughan
>             Fix For: SVN trunk
>
>         Attachments: OFBIZ-643.patch
>
>
> The un-intended behavior in tested web browsers with standard/default settings is that in https://host_name:8443/ordermgr/control/additem , when the operator enters a value it is retained afer the item is added to the cart. In a browser set to normal by today's standard (1024x732) with an "out of the box" setup of ofBiz, the operator has no notification that the item has been added other than the browser's throbber has stopped running. The piece of code in question is a input box generated by additem 
> <input class="inputBox" size="25" name="add_product_id" value="" type="text">
> Some sort of Javascript (ECMAScript) code to reset the field or the form is probably required. A more permanent solution might be to impliment some sort of ajax auto completion rather than just reseting the field with javascript.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (OFBIZ-643) Previously entered item remains in entry box after pressing enter key or [add to order] button in https://host_name:8443/ordermgr/control/additem

Posted by "Si Chen (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/OFBIZ-643?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12467848 ] 

Si Chen commented on OFBIZ-643:
-------------------------------

The whole idea is not to show that product id again after adding an item to the order, which I think is logical.  It's pretty rare when somebody takes an order and gets asked for the same product id twice by the customer

> Previously entered item remains in entry box after pressing  enter key or [add to order] button in https://host_name:8443/ordermgr/control/additem 
> ---------------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: OFBIZ-643
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-643
>             Project: OFBiz (The Open for Business Project)
>          Issue Type: Improvement
>          Components: order
>    Affects Versions: SVN trunk
>         Environment: Opera Netscape Firefox on Linux & XP, IE6 (probably IE7 as well) on XP
>            Reporter: Walter Vaughan
>         Assigned To: Si Chen
>             Fix For: SVN trunk
>
>         Attachments: OFBIZ-643.patch
>
>
> The un-intended behavior in tested web browsers with standard/default settings is that in https://host_name:8443/ordermgr/control/additem , when the operator enters a value it is retained afer the item is added to the cart. In a browser set to normal by today's standard (1024x732) with an "out of the box" setup of ofBiz, the operator has no notification that the item has been added other than the browser's throbber has stopped running. The piece of code in question is a input box generated by additem 
> <input class="inputBox" size="25" name="add_product_id" value="" type="text">
> Some sort of Javascript (ECMAScript) code to reset the field or the form is probably required. A more permanent solution might be to impliment some sort of ajax auto completion rather than just reseting the field with javascript.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (OFBIZ-643) Previously entered item remains in entry box after pressing enter key or [add to order] button in https://host_name:8443/ordermgr/control/additem

Posted by "Jacques Le Roux (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/OFBIZ-643?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12467684 ] 

Jacques Le Roux commented on OFBIZ-643:
---------------------------------------

Si,

Would it not be better to test existence of  requestParameters.add_product_id by an <#if ... , and acts accordingly (ie put its value or "") ?

> Previously entered item remains in entry box after pressing  enter key or [add to order] button in https://host_name:8443/ordermgr/control/additem 
> ---------------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: OFBIZ-643
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-643
>             Project: OFBiz (The Open for Business Project)
>          Issue Type: Improvement
>          Components: order
>    Affects Versions: SVN trunk
>         Environment: Opera Netscape Firefox on Linux & XP, IE6 (probably IE7 as well) on XP
>            Reporter: Walter Vaughan
>         Assigned To: Si Chen
>             Fix For: SVN trunk
>
>         Attachments: OFBIZ-643.patch
>
>
> The un-intended behavior in tested web browsers with standard/default settings is that in https://host_name:8443/ordermgr/control/additem , when the operator enters a value it is retained afer the item is added to the cart. In a browser set to normal by today's standard (1024x732) with an "out of the box" setup of ofBiz, the operator has no notification that the item has been added other than the browser's throbber has stopped running. The piece of code in question is a input box generated by additem 
> <input class="inputBox" size="25" name="add_product_id" value="" type="text">
> Some sort of Javascript (ECMAScript) code to reset the field or the form is probably required. A more permanent solution might be to impliment some sort of ajax auto completion rather than just reseting the field with javascript.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Closed: (OFBIZ-643) Previously entered item remains in entry box after pressing enter key or [add to order] button in https://host_name:8443/ordermgr/control/additem

Posted by "Si Chen (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/OFBIZ-643?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Si Chen closed OFBIZ-643.
-------------------------

    Resolution: Fixed

> Previously entered item remains in entry box after pressing  enter key or [add to order] button in https://host_name:8443/ordermgr/control/additem 
> ---------------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: OFBIZ-643
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-643
>             Project: OFBiz (The Open for Business Project)
>          Issue Type: Improvement
>          Components: order
>    Affects Versions: SVN trunk
>         Environment: Opera Netscape Firefox on Linux & XP, IE6 (probably IE7 as well) on XP
>            Reporter: Walter Vaughan
>         Assigned To: Si Chen
>             Fix For: SVN trunk
>
>         Attachments: OFBIZ-643.patch
>
>
> The un-intended behavior in tested web browsers with standard/default settings is that in https://host_name:8443/ordermgr/control/additem , when the operator enters a value it is retained afer the item is added to the cart. In a browser set to normal by today's standard (1024x732) with an "out of the box" setup of ofBiz, the operator has no notification that the item has been added other than the browser's throbber has stopped running. The piece of code in question is a input box generated by additem 
> <input class="inputBox" size="25" name="add_product_id" value="" type="text">
> Some sort of Javascript (ECMAScript) code to reset the field or the form is probably required. A more permanent solution might be to impliment some sort of ajax auto completion rather than just reseting the field with javascript.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Assigned: (OFBIZ-643) Previously entered item remains in entry box after pressing enter key or [add to order] button in https://host_name:8443/ordermgr/control/additem

Posted by "Si Chen (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/OFBIZ-643?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Si Chen reassigned OFBIZ-643:
-----------------------------

    Assignee: Si Chen

> Previously entered item remains in entry box after pressing  enter key or [add to order] button in https://host_name:8443/ordermgr/control/additem 
> ---------------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: OFBIZ-643
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-643
>             Project: OFBiz (The Open for Business Project)
>          Issue Type: Improvement
>          Components: order
>    Affects Versions: SVN trunk
>         Environment: Opera Netscape Firefox on Linux & XP, IE6 (probably IE7 as well) on XP
>            Reporter: Walter Vaughan
>         Assigned To: Si Chen
>             Fix For: SVN trunk
>
>         Attachments: OFBIZ-643.patch
>
>
> The un-intended behavior in tested web browsers with standard/default settings is that in https://host_name:8443/ordermgr/control/additem , when the operator enters a value it is retained afer the item is added to the cart. In a browser set to normal by today's standard (1024x732) with an "out of the box" setup of ofBiz, the operator has no notification that the item has been added other than the browser's throbber has stopped running. The piece of code in question is a input box generated by additem 
> <input class="inputBox" size="25" name="add_product_id" value="" type="text">
> Some sort of Javascript (ECMAScript) code to reset the field or the form is probably required. A more permanent solution might be to impliment some sort of ajax auto completion rather than just reseting the field with javascript.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (OFBIZ-643) Previously entered item remains in entry box after pressing enter key or [add to order] button in https://host_name:8443/ordermgr/control/additem

Posted by "David Shere (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/OFBIZ-643?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12467455 ] 

David Shere commented on OFBIZ-643:
-----------------------------------

I have applied this patch and it works for me.

> Previously entered item remains in entry box after pressing  enter key or [add to order] button in https://host_name:8443/ordermgr/control/additem 
> ---------------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: OFBIZ-643
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-643
>             Project: Apache OFBiz (The Open for Business Project)
>          Issue Type: Improvement
>          Components: order
>    Affects Versions: SVN trunk
>         Environment: Opera Netscape Firefox on Linux & XP, IE6 (probably IE7 as well) on XP
>            Reporter: Walter Vaughan
>             Fix For: SVN trunk
>
>         Attachments: OFBIZ-643.patch
>
>
> The un-intended behavior in tested web browsers with standard/default settings is that in https://host_name:8443/ordermgr/control/additem , when the operator enters a value it is retained afer the item is added to the cart. In a browser set to normal by today's standard (1024x732) with an "out of the box" setup of ofBiz, the operator has no notification that the item has been added other than the browser's throbber has stopped running. The piece of code in question is a input box generated by additem 
> <input class="inputBox" size="25" name="add_product_id" value="" type="text">
> Some sort of Javascript (ECMAScript) code to reset the field or the form is probably required. A more permanent solution might be to impliment some sort of ajax auto completion rather than just reseting the field with javascript.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (OFBIZ-643) Previously entered item remains in entry box after pressing enter key or [add to order] button in https://host_name:8443/ordermgr/control/additem

Posted by "Si Chen (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/OFBIZ-643?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12467649 ] 

Si Chen commented on OFBIZ-643:
-------------------------------

Is there anybody opposed to commiting this?


> Previously entered item remains in entry box after pressing  enter key or [add to order] button in https://host_name:8443/ordermgr/control/additem 
> ---------------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: OFBIZ-643
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-643
>             Project: OFBiz (The Open for Business Project)
>          Issue Type: Improvement
>          Components: order
>    Affects Versions: SVN trunk
>         Environment: Opera Netscape Firefox on Linux & XP, IE6 (probably IE7 as well) on XP
>            Reporter: Walter Vaughan
>         Assigned To: Si Chen
>             Fix For: SVN trunk
>
>         Attachments: OFBIZ-643.patch
>
>
> The un-intended behavior in tested web browsers with standard/default settings is that in https://host_name:8443/ordermgr/control/additem , when the operator enters a value it is retained afer the item is added to the cart. In a browser set to normal by today's standard (1024x732) with an "out of the box" setup of ofBiz, the operator has no notification that the item has been added other than the browser's throbber has stopped running. The piece of code in question is a input box generated by additem 
> <input class="inputBox" size="25" name="add_product_id" value="" type="text">
> Some sort of Javascript (ECMAScript) code to reset the field or the form is probably required. A more permanent solution might be to impliment some sort of ajax auto completion rather than just reseting the field with javascript.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.