Group: Forum Members
Last Active: Sat 1 Aug 2015
Posts: 7,
Visits: 25
|
Dear Kartris & Friends,
how can i show or display the thousand separator in price like 1,000,000 ? i already check the settings but still don't find.
thank's
|
Group: Administrators
Last Active: Tue 10 Sep 2024
Posts: 807,
Visits: 2,748
|
I think you will need to find the FormatCurrencyPrice function in the Currencies BLL and modify that. This should help:
http://forums.asp.net/t/1505718.aspx?Add+Thousands+Separator+
The main problem may be that this function also formats currencies in fields in the back end which are then submitted (such as version prices). If the comma causes problems, that may require further work. I know we've had issues in the past working with commas and points, because in much of Europe and elsewhere, commas are used as decimal separators, with points as thousand separators (the other way around from UK/US). But some payment systems require UK/US formatted numbers. So this can cause some problems to deal with, and I think in many cases we have code that will change a comma in a number to a point for such cases. So what seems like a small modification may cause many issues that will need addressing.
-- If my post solves your issue, can you 'Mark as Answer' so it's easier for other users to find in future.
If you would like to be informed of new features, new releases, developments and occasional special bonuses, please sign up to our mailing list: http://bit.ly/19sKMZb
|
Group: Forum Members
Last Active: Sat 1 Aug 2015
Posts: 7,
Visits: 25
|
what is the page and the table that contain information about the price.
thanks
|
Group: Forum Members
Last Active: Sat 1 Aug 2015
Posts: 7,
Visits: 25
|
finally i try to search and find it is tblKartrisVersion.V_Price and to display it with comma then you should edit AppCode/BLL/CurrenciesBLL.vb
Dim strFormatedPrice As String 'strFormatedPrice = Format(_Price, "##0" & sbdZeros.ToString) strFormatedPrice = Format(_Price, "###,###,###")
thanks
|