Commit b85fe623 by Torkel Ödegaard

Graph: series override dropdown menu select did not work after recent commit…

Graph: series override dropdown menu select did not work after recent commit that added typeahead to this dropdown
parent 16e79809
...@@ -37,6 +37,17 @@ function (angular, app, _, $) { ...@@ -37,6 +37,17 @@ function (angular, app, _, $) {
return memo; return memo;
}, []); }, []);
$scope.menuItemSelected = function(optionIndex, valueIndex) {
var option = $scope.menuItems[optionIndex];
var result = {
$item: option.submenu[valueIndex],
$optionIndex: optionIndex,
$valueIndex: valueIndex
};
$scope.dropdownTypeaheadOnSelect(result);
};
$input.attr('data-provide', 'typeahead'); $input.attr('data-provide', 'typeahead');
$input.typeahead({ $input.typeahead({
source: typeaheadValues, source: typeaheadValues,
......
...@@ -23,7 +23,7 @@ define([ ...@@ -23,7 +23,7 @@ define([
option.submenu = _.map(values, function(value, index) { option.submenu = _.map(values, function(value, index) {
return { return {
text: String(value), text: String(value),
click: 'setOverride(' + option.index + ',' + index + ')' click: 'menuItemSelected(' + option.index + ',' + index + ')'
}; };
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment