I am using dhtmlxScheduler and angular js. I inserted an ng-model attribute within checkbox and select element of lightbox of dhtmlxScheduler - ng-model="isallday".
link:function($scope, $element, $attrs, ...) {
...
angular.element(document.querySelector( '[name="isallday"]' )).attr('ng-model', 'isallday');
angular.element( document.querySelector( ".dhx_section_time" )
.getElementsByTagName("select") ).attr('ng-class', '{dhx_time_disable: isallday}');
Clicking on the checkbox doesn't work. What am I doing wrong?