nopCommerce v2.10 released

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
12 Jahre weitere
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)
12 Jahre weitere
<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
12 Jahre weitere
Any tentative date for the v2.2 release?
12 Jahre weitere
infiniti wrote:
Any tentative date for the v2.2 release?

Mid october
12 Jahre weitere
Does 2.2 have the update for the product imports to include image references and categories?
Thanks!
12 Jahre weitere
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
12 Jahre weitere
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.