We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is it possible to configure system-wide settings for a particular control on application startup?
For example, instead of having to put k-no-records.bind="true" on every ak-grid just set it once globally?
k-no-records.bind="true"
ak-grid
Thanks, Jason
The text was updated successfully, but these errors were encountered:
I'm not sure, not nicely anyway. What I would do is put the settings in a class, inject it and then bind it to k-options
Like
export class MyGridSettings { pagination = false; } @inject(MyGridSettings) export class MyPage { constructor(settings) { this.defaultsettings = settings; } } <ak-grid k-options.bind="defaultsettings">
I would also glady accept a PR to specify defaults when initializing the bridge plugin from main.js
Sorry, something went wrong.
By the way, k-options will provide defaults, which you can override with k-pagination="" for example
No branches or pull requests
Is it possible to configure system-wide settings for a particular control on application startup?
For example, instead of having to put
k-no-records.bind="true"
on everyak-grid
just set it once globally?Thanks,
Jason
The text was updated successfully, but these errors were encountered: