Skip to content
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

Convert grid options to objects instead of basic data types #34

Open
branimirborisov opened this issue Jul 19, 2017 · 0 comments
Open

Comments

@branimirborisov
Copy link
Contributor

Currently we do not have a way to group semantically different grid options used in configuration, instead we have separate variable for each option. Example: heading, headingFixed, headingCssClass, selection, selectionMultiple & etc. This can be improved by using object for the configuration, example:

{
  heading: {
    enabled: true,
    fixed: false,
    cssClass: 'heading'
  },
  selection: {
    enabled: true,
    multiple: false
  }
}

This would be a breaking change, so it needs to be introduced in beta, before moving to rc release.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant