A careless mistakes ?

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
14 anni tempo fa
hi, first of all thank you for nopcommerce, are legendary! :) ..and excuse my english.
Maybe we have sure a careless mistakes, not a bug!
at v. 1.40 ProductVariantTierPrices.ascx file on delete button we have:


<asp:Button ID="btnDeleteProductVariantAttribute" runat="server" CssClass="adminButton"
                    Text="Delete" CausesValidation="false" CommandName="<% $NopResources:Admin.ProductVariantTierPrices.Delete %>"
                    ToolTip="<% $NopResources:Admin.ProductVariantTierPrices.Delete.Tooltip %>" />


and delete not work, than edit in:



<asp:Button ID="btnDeleteProductVariantAttribute" runat="server" CssClass="adminButton"
                    Text="<% $NopResources:Admin.ProductVariantTierPrices.Delete %>" CausesValidation="false" CommandName="Delete"
                    ToolTip="<% $NopResources:Admin.ProductVariantTierPrices.Delete.Tooltip %>" />



and now work :)

perhaps there was a substitution between Text and CommandName property.

Bye
14 anni tempo fa
It's a bug. Thanks
14 anni tempo fa
nopCommerce team | a.m. wrote:
It's a bug. Thanks

if you think this is a bug, i do not know what to think of my software :(
:D
14 anni tempo fa
ops, maybe have same situation at OrderDetails.ascx


<asp:BoundField DataField="<% $NopResources:Admin.OrderDetails.Products.Quantity %>"
                                    HeaderText="Quantity" HeaderStyle-HorizontalAlign="Center" ItemStyle-Width="10%"
                                    ItemStyle-HorizontalAlign="Center"></asp:BoundField>



edit in:

 <asp:BoundField DataField="Quantity"
                                    HeaderText="<% $NopResources:Admin.OrderDetails.Products.Quantity %>" HeaderStyle-HorizontalAlign="Center" ItemStyle-Width="10%"
                                    ItemStyle-HorizontalAlign="Center"></asp:BoundField>


now work :)
14 anni tempo fa
dops wrote:
ops, maybe have same situation at OrderDetails.ascx

This bug was fixed in 1.50
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.