class MyView extends Ui.View {
function myFunct() {
//do something here
}
}
class MyViewDelegate extends Ui.BehaviorDelegate {
function onMenu() {
//I want to call myFunct() in MyView here
//any way to do it????
}
}
Is there any way to do this??