Welcome to the club.
Directly editing such a custom column isn't possible...
What you need: The pro version of XY (because of scripting)
What to do:
01. Add a custom column
- Right click in the column header, "Add column"
- Right click the newly added column header (current name: "(Undefined)"), "Select Custom Column..."
- Choose an entry of the list (one of the "(Undefined)" entries), click "OK"
- Right click the newly added column header (current name is still: "(Undefined)"), "Configure Custom Column <xx>..."
Caption: e.g.: "Assoc. Date"
Type: Script
Trigger: Browse or List (depending on speed)
Rest of the fields: Leave them at their defaults
The script field:
Code: Select all
return tagitems("ex5", , <cc_item>);
Close it with clicking on "OK"
Menu - View - Folder View Settings - ...
Either save it or define it as default (whether you need it only for a single folder or for all folders)
===========================
Add a custom toolbar button
And use this script in it:
Code: Select all
$tag = input("Enter date...", , "<date>");
tag $tag, <curitem>, 7;
#195;
It will ask for a string (default = current date), tags the current! selected item with that string and saves the tag database afterwards
Menu - View - Refresh List
And it should now show you the tagged date in the custom column...