I know I can set the structure/filters to use using the following:
view:"pivot",
structure: {
filters: [
{ name: "name", type:"select" },
{ name: "continent", type: "text" }
]
}
Is it possible to set the actual text of the filter? For instance, I would like to do something like this:
view:"pivot",
structure: {
filters: [
{ name: "name", type:"select" },
{ name: "continent", type: "text", value="Africa" }
]
}
How can I achieve this?