Reputation: 45
I am trying to search catalogVersion in advanced search Backoffice. when I Type 2-3 letters of catalog code, search is not working, returning empty results.
But when I type version , results are coming up.
Upvotes: 0
Views: 727
Reputation: 1430
This search can only search on fields directly on the object you search. You cannot search on fields of a sub-object. In this case, you want to search on the catalog.name
but that's available through CatalogVersion.Catalog.name
, so one level to deep to search.
While Staged is directly available on CatalogVersion.version
, so you can search on that.
With the out of the box, you could click on the ... and in that field search for your specific catalog. Then it will be selected in this search box
Upvotes: 1