Hi Vladimir,
Can you give me the link for this problem?
I am facing the same problem, ng-click='myclicked()' in scheduler groupHeaderTemplate is not fired.
function myController($q, $scope)
{
$scope.myclicked = function () {
alert("myclicked on: ");
};
$scope.schedulerOptions = {
.........
groupHeaderTemplate: function () {
return "<button ng-click='myclicked()'>Click </button>";
},
.......
};
}