7/6/2025 1:29:58 PM
|
|
slxdeveloper.com Community Forums |
|
|
|
The Forums on slxdeveloper.com are now retired. The forum archive will remain available for the time being. Thank you for your participation on slxdeveloper.com!
Forum to discuss the use of the SalesLogix Web Platform, Client and Customer Portals, and the Application Architect (For version 7.2 and higher only). View the code of conduct for posting guidelines.
|
|
|
|
Currency contrl
Posted: 29 May 08 10:02 AM
|
Let me know about currency control in Sales logix application architect |
|
|
|
Re: Currency contrl
Posted: 29 May 08 7:26 PM
|
It is just a textbox that displays formatted currency values. What did you need to know about it? |
|
|
|
Re: Currency contrl
Posted: 30 May 08 3:02 AM
|
Originally posted by Senthilkumar.G
Let me know about currency control in Sales logix application architect |
|
Man now that is a vague question!! It is just a textbox that formats numbers with the commas and decimals etc. and also puts a currency symbol in front of it, the one that you select in the currency control properties. It can also have an exchange rate specified. |
|
|
|
Re: Currency contrl
Posted: 30 May 08 1:54 PM
|
Brother, I need to limit the entry of characters in a textbox, you could help me. For example, can only be typed numbers and the letter A.
For the Application is to do this?
Thank you. |
|
|
|
Re: Currency contrl
Posted: 02 Jun 08 2:54 AM
|
This is how to make a textbox/currency control number only:
this.MYCONTROL.Attributes.Add("onkeypress", "if (((event.keyCode < 48) || (event.keyCode > 57))) {event.returnValue = false;}");
Add your own criteria to the if statement to cater for A characters (I cant remember what the event keycode is for A, look online )
This is just assigning some javascript to your control that will monitor the client's onkeypress event.
|
|
|
| |
|
Re: Currency contrl
Posted: 16 May 09 8:09 PM
|
Well i have a question regarding to currency controls.
I am in Panama, and we eventually have problems with the currency control.
By some reason, every time the form does post-back, it multiplies the value of the field by 100.
Lets say you enter 1000.56, when you save, you will have 100056.00, if you save again, 10005600.00, etc....
We face this problem in lan clients, and always fix the problem with a Windows XP hotfix for vbscript and jscript. But yesterday i deployed a slxclient to a customer, and now i have the same problem.
Obviously, the hotfix don't work because i'm having this issue at the W2k3 server...
Any help will be really appreciated!!! |
|
|
|
Re: Currency contrl
Posted: 16 May 09 8:10 PM
|
Well i have a question regarding to currency controls.
I am in Panama, and we eventually have problems with the currency control.
By some reason, every time the form does post-back, it multiplies the value of the field by 100.
Lets say you enter 1000.56, when you save, you will have 100056.00, if you save again, 10005600.00, etc....
We face this problem in lan clients, and always fix the problem with a Windows XP hotfix for vbscript and jscript. But yesterday i deployed a slxclient to a customer, and now i have the same problem.
Obviously, the hotfix don't work because i'm having this issue at the W2k3 server...
Any help will be really appreciated!!! |
|
|
|
You can
subscribe to receive a daily forum digest in your
user profile. View the site code
of conduct for posting guidelines.
Forum RSS Feed - Subscribe to the forum RSS feed to keep on top of the latest forum activity!
|
|
|
|
|
|
|
|