-
Notifications
You must be signed in to change notification settings - Fork 36
add cells, rows, columns functions #12
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
Conversation
Changes Unknown when pulling cbfd7e3 on lesliekim:master into * on Microsoft:0.1.0-dev*. |
demos/grid-view/index.js
Outdated
cells, | ||
} from '../../js/vnext/projection'; | ||
import './index.less'; | ||
import * as tmpl from './bodyTemplate.jade'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import bodyTemplate from './body-template.jade';
- File name should use kabab-case
- Use don't use short names for globals
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's fixed~
js/vnext/projection/column-group.js
Outdated
}) => { | ||
const col = { name, width, parent, html, height }; | ||
|
||
const col = { name, width, template, parent, html, height }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All the configurations need to be included:
- headTemplate
- headHtml
- bodyTemplate
- bodyHtml
- footTemplate
- footHtml
Changes Unknown when pulling c27225c on lesliekim:master into * on Microsoft:0.1.0-dev*. |
js/vnext/projection/jsdata.js
Outdated
skip, | ||
take, | ||
filter, | ||
orderby = [], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix indentation.
'config', | ||
], function (config) { | ||
const renderers = []; | ||
], function (config) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not intended to change this file?
@lesliekim, There's no critical feedbacks, I'll merge the code in. You can fix the comments in a following change. |
add cells, rows, columns functions
No description provided.