Before redirecting to “resultData” template I want which li value is selected by user i.e if user has click on about
then I want value= 124 and name = About. After getting this then we want to redirect to “resultData” template because these above selected value I want to pass as parameter in model function of “resultData” template
actions: {
goToResultData: function(value) {
// Do what you want with `value`,
// which is the number given in the action declaration
this.transitionToRoute('resultData');
}
}
This will allow you to do any processing you want before you redirect.