New to Kendo UI for Angular? Start a free 30-day trial
PluginsFn
Updated over 6 months ago
Represents the callback used by the
plugins property.
typescript
pluginsCallback(defaultPlugins: Plugin[]): Plugin[] {
const myPlugin = new Plugin({/ custom plugin code /});
return [...defaultPlugins, myPlugin];
}