To version 8.1 it was possible to press with the login (web) in the field password the Enter key and the login was launched. From version 8.2 this does not function any more, it must be clicked on the logon-button.
Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.
Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.
Hi Mario,
Unfortunately, we could not reproduce the problem with our MainDemo. Could you please provide us with a sample project reproducing the issue.
Thanks,
Dennis
Put in the Web-MainDemo the cursor in the field Password and press the Enter key. There occurs no login. However, this functioned to version 8.1.
Hi Mario,
Thank you for the update. I have reproduced the problem now. We are working on it.
Thank you for your patience,
Dennis
Hi Mario,
We have fixed this bug.
Currently as a workaround you can add the following code in the Logon.aspx markup file:
... ... ... function OnLoad() { DXMoveFooter(); DXattachEventToElement(document.getElementById('formTable'), "resize", DXWindowOnResize); DXattachEventToElement(window, "resize", DXWindowOnResize); //--------------------------- if(document.body.removeEventListener){ document.body.removeEventListener("keypress", disableEnterKey, false); } else { document.body.detachEvent('onkeypress', disableEnterKey); } //--------------------------- } ... ... ...
Please let me know in case of any difficulty.
Thanks,
Dennis