HomeFAQWhat is display-label mode in XyzPilot?...

FAQ

What is display-label mode in XyzPilot?

Display-label mode means operator references like L14 resolve by label identity, not by array position. This prevents wrong-entity selection after deletions.

Full Answer

Display-label mode is the operator-reference interpretation where bare numbers are normalized to typed labels. For example, entering "14" in a line field is interpreted as "L14" — and L14 is resolved by finding the entity with that exact label, not by looking at array position 14.

This was a critical architectural fix in XyzPilot. Previously, some workflows parsed labels like L14 into numbers and used those numbers as array indexes. After deletions, this produced off-by-one selection and wrong-entity mutation.

Display-label mode is now the default for all operator-facing Quick Input and Trim forms. Trusted internal callers (including the AI Agent) retain explicit index-based compatibility where required.

XyzPilot Example

Before display-label mode: L14 might resolve as L15 after L13 was deleted (positional lookup: index 14 → wrong entity) With display-label mode: L14 always resolves to the entity with label L14 (label lookup → stable ID → current backing record) Result: L14 is always L14, regardless of deletions.
← All FAQs Operator Reference Try in XyzPilot →