Dear Flexmonster team,
Is it possible to make "All Values" a default value for format cells popup instead of "Choose value"?
And if not - are you planning to add this feature?
Thanks in advance.
Hello, Artem,
Thank you for writing to us.
We would like to kindly inform you that the Toolbar is an opened to modify addition to Flexmonster. You are welcome to change its source code in the way it fits your needs.
In order to implement the described functionality, we suggest following the steps below:
1436 valuesDropDown.options[0] = new Option(Labels.choose_value, "empty"); 1437 valuesDropDown.options[0].disabled = true; 1438 valuesDropDown.options[1] = new Option(Labels.all_values, "");
After:
valuesDropDown.options[0] = new Option(Labels.choose_value, "empty");valuesDropDown.options[0].disabled = true;1436 valuesDropDown.options[0] = new Option(Labels.all_values, "");
1549 valuesDropDown.options[i + 2] = new Option(measures[i].name, measures[i].uniqueName);
After:
1549 valuesDropDown.options[i + 1] = new Option(measures[i].name, measures[i].uniqueName);
The described modification removes the "Choose Value" tab from the drop-down menu and set the "All Values" button selected by default.
In order to get information about how to save the Toolbar modifications after updates, we recommend referring to the following forum thread.
We sure hope it works for you.
Please let us know if any additional questions on this point appear.
Kind regards,
Illia