nopCommerce v2.10 released

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
Il y a 12 ans
ricardo wrote:
Changed to "pt-BR" is my culture...
...changed to @(MvcHtmlString.Create(HttpUtility.HtmlDecode(Html.Telerik().ScriptRegistrar().Globalization(true)

Thank for suggestion. But it doesn't work. You still get validation errors (e.g., ' The field Price must be a number.' when editing price on product variant details page)
Il y a 12 ans
<script src="@Url.Content("~/Scripts/lib/globalize.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/lib/cultures/globalize.cultures.js")" type="text/javascript"></script>

<script type="text/javascript">
$.validator.methods.number = function (value, element) {
return !isNaN(Globalize.parseFloat(value));
}
$(function () {
    Globalize.culture('%%culture%%');
});


</script>

looks like it will work
Il y a 12 ans
Any tentative date for the v2.2 release?
Il y a 12 ans
infiniti wrote:
Any tentative date for the v2.2 release?

Mid october
Il y a 12 ans
Does 2.2 have the update for the product imports to include image references and categories?
Thanks!
Il y a 12 ans
Simon.UK wrote:
Does 2.2 have the update for the product imports to include image references and categories?
Thanks!

Yes: http://nopcommerce.codeplex.com/workitem/9585
Il y a 12 ans
the customer enters price
minimum value 50.00
Maximum value 1000.00
but the minimum value convert (Brazil R$) to (U.S. dollars $)

The price must be from $28.03 to $560.57

perfect conversion !!!

                    _priceFormatter.FormatPrice(minimumCustomerEnteredPrice, false, false)
                    _priceFormatter.FormatPrice(maximumCustomerEnteredPrice, false, false)


But when you enter the minimum value, gives error because the value was lower than 28.03 minor 50.00

some light?
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.