Filter in a!facet not apply with visible is false

 Hi,

 

I Have a Record DB, and I'm using some filters with the function a!facet, only that when I put the input visible in false the facet does not work.

This is my code.

a!facet(
  name: "Usuarios",
  options: {
    a!facetOption(
      id: 1,
      name: "Analista",
      filter: a!queryFilter(
        field: "trk_usuario",
        operator: "=",
        value: loggedInUser()
      )
    ),
	a!facetOption(
      id: 2,
      name: "Supervisor",
      filter: a!queryFilter(
        field: "trk_usuario",
        operator: "<>",
        value: "aha"
      )
    )
  },
  isVisible: true(),
  defaultOption: if(
    isusermemberofgroup(loggedInUser(), cons!CR_grupoAnalista),
	"Analista",
	"Supervisor"
  )
)

 

Someone could help me??

 

Reagrds

  Discussion posts and replies are publicly visible

Parents Reply Children