parts display change

Hi,

Where can I change the Parts display to directly show all items, without click Search? Thanks.

Parents Reply
  • One way is to change the sorting manually directly from the search grid by clicking on the Arrow in particular column

    Another way is by writing a server side method OnBeforeGet that adds the orderBy attribute to the request, like this:

    this.setAttribute("orderBy","item_number DESC");
    return this;

    The search results are after sorting on the property "Part Number" in the descending order are:

Children