Nikolaj Ivancic

Results 96 comments of Nikolaj Ivancic

### typescript navigation skeleton 1. Kendo Core installation: https://aurelia-ui-toolkits.gitbooks.io/kendo-ui-sdk-installation/content/installation/installing%20kendo/advanced/core/jspm.html 2. `jnpm install css kendo-ui aurelia-kendoui-bridge` 3. Update `config.js` ``` paths: { "*": "dist/*", "github:*": "jspm_packages/github/*", "npm:*": "jspm_packages/npm/*", "kendo.*": "jspm_packages/github/kendo-labs/[email protected]/js/kendo.*.js" Customers:...

### webpack navigation skeleton 1. Kendo Core installation instructions used: https://aurelia-ui-toolkits.gitbooks.io/kendo-ui-sdk-installation/content/installation/installing%20kendo/advanced/core/webpack.html 2. Add the following stylesheets to the head section of `index.html: ``` ``` 3. run `npm install kendo-ui-core aurelia-kendoui-bridge...

### esnext aspnetcore navigation skeleton 1. Kendo Core installation: https://aurelia-ui-toolkits.gitbooks.io/kendo-ui-sdk-installation/content/installation/installing%20kendo/advanced/core/jspm.html 2. `jspm install css kendo-ui aurelia-kendoui-bridge` (_Note that at this point, the `npm install && jspm install` command was already...

### typescript aspnetcore navigation skeleton ### Note: `typings install kendo-ui --source=dt --global` *** 1. Kendo Core installation: https://aurelia-ui-toolkits.gitbooks.io/kendo-ui-sdk-installation/content/installation/installing%20kendo/advanced/core/jspm.html 2. `jspm install css kendo-ui aurelia-kendoui-bridge` (_Note that at this point, the...

### typescript webpack navigation skeleton 1. Kendo Core installation instructions used: https://aurelia-ui-toolkits.gitbooks.io/kendo-ui-sdk-installation/content/installation/installing%20kendo/advanced/core/webpack.html 2. Add the following stylesheets to the head section of `index.html: ``` ``` 3. run `npm install kendo-ui-core...

This is convoluted indeed. Let me see if I understand - using the "bridge side" and "kendo side" classification. `this.gridVM.kWidget.destroy();` reaches into "kendo side" to destroy the "real object" `kendo.destroy(this.gridVM.kWidget);`...

> I need to look into this further, but I believe that > `this.gridVM.kWidget.destroy();` > destroys the widget > > and > `kendo.destroy(this.gridVM.kWidget);` > destroys the widget and any child...

> Perhaps we should always initialize kendo controls on a span/div/input ... I would think that this is a very good reason to change what we have today.

### Additional issues **A.** The step 9 above is needed because the Kendo SDK referenced in step 7 has only minified files - without the explicit statement `import 'kendo-ui/js/kendo.autocomplete.min'` the...

Since I asked about the previous closure, I need to ask again - to be consistent. As I do not see any comments / explanations, what is the reason for...