Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
peter_sk
Contributor
Contributor

Dashboard Bundle - Button - Select multiple values in a field

Hello, 

I am using new Dashboard Bundle -> Button for navigation extension -> Action and navigation section and have a trouble configuring button to select multiple values in a field

I have filed with values (01, 02, 03, 04, 05, 06, 07, 08, 09, 10, 11, 12) and I want to select first 3 values (01, 02, 03). 

In the Value field I type 01;02;03 because it is written to separate multiple values with semi-column (;).

But I dont get any selection.

Any ideas?

 

Best Regards, 

Peter

Labels (2)
1 Solution

Accepted Solutions
peter_sk
Contributor
Contributor
Author

Turns out, that Qlik convert all strings (if it is number) to number, so it did not recognize my '01' value as string.

I changed function in helpers.js to

  splitToStringNum: function (str, sep) {

          var a = str.split(sep);

          return a;

        }

and it works fine now.

View solution in original post

1 Reply
peter_sk
Contributor
Contributor
Author

Turns out, that Qlik convert all strings (if it is number) to number, so it did not recognize my '01' value as string.

I changed function in helpers.js to

  splitToStringNum: function (str, sep) {

          var a = str.split(sep);

          return a;

        }

and it works fine now.