OrchardCMS / OrchardCore

Orchard Core is an open-source modular and multi-tenant application framework built with ASP.NET Core, and a content management system (CMS) built on top of that framework.
https://orchardcore.net
BSD 3-Clause "New" or "Revised" License
7.41k stars 2.39k forks source link

Owner content item filter #14343

Open agriffard opened 1 year ago

agriffard commented 1 year ago

Is there an Owner filter in the content items search?

I don't seem to find one in the available filters of the modal with syntax examples.

MikeAlhayek commented 1 year ago

I don't recall having one. If you have List Own Contents then you can only see your own items. But, I think what you are looking for does not exists in OC.

agriffard commented 1 year ago

That can be useful when you start creating contents per user and then want to be able to filter them.

An actual bootstrap-select filter would be also interesting but it would be the first one whose number elements could grow (if more and more users are added) and cause performance pbs.

MikeAlhayek commented 1 year ago

Yes. If you would to implement such filer, you may need to use what we use in the UserFieldPicker (load first 50, then search support for the rest)

douwinga commented 7 months ago

I am working on implementing this. Just about done. It uses bootstrap-select like the other filters and lazy loads the first 50 users and then loads more as you scroll. There is also search support.