You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
is there a way to use the TemplateCompiler "standalone", without using the full kendo-bridge?
I have my kendo controls setup with jquery and don't want to re-write it all to use the kendo-brigde, but I definitely would prefer to use aurelia syntax for the templates, especially the ability to do event binding like click.delegate="..."
Could somebody point me in the right direction ?
thanks
The text was updated successfully, but these errors were encountered:
I don't see why not. I think you need to inject it into your own view-model that uses the Kendo control. The next challenge would be to get the aurelia template as a string, for which you can use the template class. Then you need to set the template on the config object that you pass to kendo, e.g
rowTemplate: () => "<!-- aurelia template here -->"
Note, the function callback causes Kendo not to use its own templating system. When you use Kendo and Aurelia's templating syntax the Kendo templating system breaks.
Hi
is there a way to use the TemplateCompiler "standalone", without using the full kendo-bridge?
I have my kendo controls setup with jquery and don't want to re-write it all to use the kendo-brigde, but I definitely would prefer to use aurelia syntax for the templates, especially the ability to do event binding like click.delegate="..."
Could somebody point me in the right direction ?
thanks
The text was updated successfully, but these errors were encountered: