Hi,
I'm using the "aurelia-kendoui-bridge" tool to integrate kendo with aurelia, and I have no problem with other widgets such as Calendar or Button. But when I try to create a kendoSpreadsheet, I'm getting a "Syntax error, unrecognized expression: #" when loading the widget. I tried with and without sheets property. So it seems the problem is loading the widget, although I can see it in my template.
My kendo version is 2016.2.714.
This is my HTML code:
<template>
<require from="aurelia-kendoui-bridge/spreadsheet/spreadsheet"></require>
<div id="example">
<ak-spreadsheet k-sheets.bind="sheets"></ak-spreadsheet>
</div>
</template>
And my TS code is attached below.
Any clue why I'm having this problem?