Hi, i use last angular-kendo version (1.0.2) i found a problem with angular directives in kendo grid column template.
If i use column template without custom editor (not setting editor property) angular directives inside template are parsed well.
but if i use column template AND custom editor angular directives inside template are not parsed when i lost focus from current editing row!
simple example:
col = { field: 'downloadMode', title: 'Download Mode', template: $("#cboDownloadModeTemplate").html(), editor: $scope.GetDownloadModeColumnEditor }
A fix for this will be included in the next Kendo release (Q2 2014), where the Angular bindings are built-in. A quick fix directly in this repository is not possible.
Hi, i use last angular-kendo version (1.0.2) i found a problem with angular directives in kendo grid column template. If i use column template without custom editor (not setting editor property) angular directives inside template are parsed well. but if i use column template AND custom editor angular directives inside template are not parsed when i lost focus from current editing row! simple example: col = { field: 'downloadMode', title: 'Download Mode', template: $("#cboDownloadModeTemplate").html(), editor: $scope.GetDownloadModeColumnEditor }
template: script id="cboDownloadModeTemplate" type="text/x-kendo-template"> {{'UserDetails.DownloadModeDownload' | translate}} /script>
custom editor: $scope.GetDownloadModeColumnEditor = function (container, options) { var name = 'cbo' + options.field;
any suggestions? thanks