our single page app using angularjs is near completion.
One ng-view screen is attached - using kendo controls since there is benefit for this screen to make use of DataSourceRequest, listview/pager
I've integrated with kendo using directives - that is the screen you see.
When trying to add interaction with angularjs using ng-click - it doesn't work. Probably since this dom was added outside of angularjs's dom manipulation.
And this is the problem.... How do I get kendo template to work with angularjs?
I also don't see a datasourcechanged event on listview to notify me when the datasource underneath has been changed.
One ng-view screen is attached - using kendo controls since there is benefit for this screen to make use of DataSourceRequest, listview/pager
I've integrated with kendo using directives - that is the screen you see.
When trying to add interaction with angularjs using ng-click - it doesn't work. Probably since this dom was added outside of angularjs's dom manipulation.
<
script
type
=
"text/x-kendo-tmpl"
id
=
"FilterByTypeItemTemplate"
>
<
li
><
a
href
=
"\##:Name #"
ng-click
=
"FilterByType('#:Name #')"
><
i
class
=
"icon-chevron-right pull-right"
></
i
><
em
class
=
"pull-right"
>(#:Count #)</
em
> #:Name # </
a
></
li
>
</
script
>
And this is the problem.... How do I get kendo template to work with angularjs?
I also don't see a datasourcechanged event on listview to notify me when the datasource underneath has been changed.