Question

Deprecation Notice: Leading Period in Field Names (3.16+)

  • 22 March 2016
  • 0 replies
  • 39 views

Userlevel 3

As of Looker 3.16, fields that are preceded with a period, in order to remove the view name, will no longer remove that view name.


Old Behavior


Before Looker 3.16, it was possible to remove the view name from a field, throughout Looker’s UI (such as the Explore page), by starting the field name with a period.


For example, this LookML:


- view: order
fields:
- dimension: price
...

Would appear as:


ORDER Price


Whereas this LookML:


- view: order
fields:
- dimension: .price
...

Would appear as:


Price


New Options


As of Looker 3.20, you can use view_label to achieve the same behavior. For example:


- view: order
fields:
- dimension: price
view_label: ''

0 replies

Be the first to reply!

Reply