-
Notifications
You must be signed in to change notification settings - Fork 351
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
How to define default options #11
Comments
Hi, Yes, you can do it with following code $.extend(jsGrid.Grid.prototype, {
// default options here
}); Gonna add special method for this. |
it's great. thanks. |
Yes, it's possible for fields in the similar way $.extend(jsGrid.fields.checkbox.prototype, {
// default options here
}); You can define options of any other build-in field, just specify its name instead of |
hi can you give any reference to the document where this is listed @tabalinas |
Hi,
I would like to define defaults option for all jsgrid I'm using on my website.
How can I do that ? Is it possible without change the options in jsgrid.js directly ?
Thanks for your work.
The text was updated successfully, but these errors were encountered: