Hello. I am overriding how some fields are edited by following these instructions.
I want to make the decision whether to override based on two pieces of information:
- Name of the field
- Whether the tiddler has an attribute prediction-type defined
So far I’ve only be able to do it based on the name of the field by defining this tiddler:
title: $:/plugins/sortega/tiddlypredict/config/field-editors
tags: $:/tags/FieldEditorFilter
list-before: $:/config/FieldEditorFilters/default
[match[prediction]then[$:/plugins/sortega/tiddlypredict/config/FieldEditorFilters/prediction]]
[match[resolution]then[$:/plugins/sortega/tiddlypredict/config/FieldEditorFilters/resolution]]
Is this possible?