Hey,
do you want to navigate to a link or do you want to call a controller function?
Calling a Controller would work like this:
image: M.ImageView.design({
value: 'theme/images/image.png',
events:{
tap:{
target: this,
action: function(){
console.log('hello');
}
}
}
}),
You could also just change 'this' with 'MyApp.MyController' and the function with a string of the function name inside of the controller.
best regards
marco