cancel
Showing results for 
Search instead for 
Did you mean: 

update number point indicator with input field filter

hcardenas
Newcomer
0 Kudos

Hello ,

I have created an input field filter for a table and the code is as follows:

var Input= this.getValue();
var i=0;
var res=Table_1.getDataSource().getMembers("ZPEDIDO");
var filter_data = [""];


if (Input === "") {
Table_1.getDataSource().removeDimensionFilter("ZPEDIDO");
} else {
for (i = 0; i < res.length; i++) {
if (res[i].description.startsWith(Input)) {
filter_data.push(res[i].description);
}
}
Table_1.getDataSource().setDimensionFilter("ZPEDIDO", [Input]);
}

but I have a problem, that this is only filtering the values of the table but not the numerical point indicators like the following image,

I would like to know if it is possible to filter the numerical point indicators according to an input field filter? How could I adapt it to my current code? Thanks

hcardenas_0-1711982627845.png

 

Accepted Solutions (0)

Answers (0)