Product batch editor, no paging. Bug?
Posted: Fri Feb 12, 2010 11:12 am
Im not sure if anyone else has this problem or has noticed this, but the product batch editor doesnt do multiple pages on any of our 4 installs. if there is more than 100 things in a category, we cant get to them in the batch. I patched it for now like so:
Is this something you guys already know about?
Code: Select all
<asp:DropDownList ID="MaximumRows" runat="server" Width="180px">
<asp:ListItem Text="10"></asp:ListItem>
<asp:ListItem Text="20" Selected="true"></asp:ListItem>
<asp:ListItem Text="50"></asp:ListItem>
<asp:ListItem Text="100"></asp:ListItem>
<asp:ListItem Text="1000"></asp:ListItem> /*modified*/
</asp:DropDownList>