E.g. listpane() in the scope of a scripted custom column
Posted: 14 Jul 2024 16:02
E.g.:
shows that each column where the script is executed does only see the visible items up to its entry.
The same is true for e.g.
I guess this is by design?
I'd like to do the following: Use a scripted cc and...
This would yield a huge performance boost because the data would only be generated once and the cli tools don't need to be called <x> times for all items...
return listpane();shows that each column where the script is executed does only see the visible items up to its entry.
The same is true for e.g.
get("countitems");I guess this is by design?
I'd like to do the following: Use a scripted cc and...
Code: Select all
- Test if it's the first column
If yes fill a perm var with the content of a cli tool that is able to generate metadata for a full list of files (in this case: for all [C]listpane()[/C] files/folders...)
- Test if it's a column > first column & < last column
If yes, wait until the perm var is non empty and return its belonging data line from it afterwards
- Test if it's the last column
If yes, return its belonging data line and reset the perm var to empty