-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue 1 #2
Comments
Categorymissing API / templates / bug / other Description of the problemCauseSolution |
Categorytemplates Description of the problemAurelia's templating syntax is different from Kendo's own templating syntax. When we pass Aurelia templates to a Kendo control, Kendo will try and parse that template as if it's a Kendo template, causing in errors: http://dojo.telerik.com/oNOGe CauseKendo's own templating system is always active SolutionA property that we can set while initializing widgets, or a property on the It also prevents users from serializing the grid to JSON since functions are not serializable. |
Categorymissing API Description of the problemA very simplistic example of a missing API function is for the Kendo Button. When you initialize a Kendo Button you can specify an icon. But when the button has been created there is no way to change the icon, without having to destroy and recreate the button. This effectively prevents us from ever being able to two-way bind the icon property, as we really don't want to recreate controls whenever a single property changes CauseThere is a missing API function to change the icon of a button SolutionAdd a function to change the icon of a button |
Categoryother Description of the problemIn the destroy widgets manually document it states that in order to destroy a widget you need to empty out the div that the widget was initialized on. Which is fine for Grids that use a datasource because the data is in the datasource. But when the grid is initialized from HTML you don't really want to clear the HTML because you'll lose the data. CauseSometimes you need to clear the div that a widget was initialized on, but sometimes you don't. SolutionKendo improves their destroy function to be more consistent (so we can reuse elements) or the bridge adds logic to always initialize widgets on new elements. |
to be written by @JeroenVinke
The text was updated successfully, but these errors were encountered: