Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • String
  • DateTime
  • Reference
  • Foreign Key

fields.  For example, the filter for the Title of an item is set up in core Lynicon code on the Summary type like this:

Code Block
[FieldFilter("Item Title", Showable = false)]
public string Title { get; set; }

Adding Filters Manually

A filter can be added manually if it doesn't naturally associate itself with a field like this:

Code Block
LyniconUi.Instance.Filters.Add(new PublishingFilter());

You can make custom filters by inheriting from any of the existing filter types.