Writes the filter value applied to a dimension to a text box
This code will display either the included or excluded dimension value in a text box.
var city= Table_3.getDataSource().getDimensionFilters("City")[0];
var strFilter = [""];
var sfv = cast(Type.SingleFilterValue, city);
strFilter = [sfv.value];
Text_1.applyText(strFilter[0]);
Code language: JavaScript (javascript)
