grafonnet icon indicating copy to clipboard operation
grafonnet copied to clipboard

g.panel.table.standardOptions.withFilterable(value=filterable) appears to be broken?

Open v-zhuravlev opened this issue 9 months ago • 0 comments

Function g.panel.table.standardOptions.withFilterable(value=filterable) produces:

        fieldConfig+: {
          defaults+: {
            filterable: value,
          },

while UI table toggle in Grafana 11.3 adds:

           fieldConfig: {
             defaults: {
               custom: {
                 filterable: true,
               },
             },
           },

the latter appears to be the one that actually works while withFilterable is not.

Image

v-zhuravlev avatar Jan 10 '25 15:01 v-zhuravlev