Я пытаюсь вызвать функцию внутри того же класса с другой функцией, но получаю TypeError: this.another не является функцией error
Custom.Widgets.report.Incidents = RightNow.Widgets.extend({
constructor: function() {
this.getViewData();
},
another: function(){
alert("Calling another function");
},
clicked: function(){
$("#firstPage").click(function(){
alert("Calling function on Click"); */
another();
});
},
getViewData: function(){
alert("Calling main function");
this.another();
},
});
Пожалуйста, помогите.