-
Notifications
You must be signed in to change notification settings - Fork 161
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
fix(pivot-grid): added createRow method for grid based events #15209
base: master
Are you sure you want to change the base?
Conversation
projects/igniteui-angular/src/lib/grids/pivot-grid/pivot-grid.component.ts
Outdated
Show resolved
Hide resolved
…/igniteui-angular into ttonev/fix-14970-master
@@ -791,3 +791,28 @@ export class IgxSummaryRow implements RowType { | |||
return row; | |||
} | |||
} | |||
|
|||
export class IgxPivotGridRow extends BaseRow { |
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.
If you use the BaseRow
as a parent class you will need to override the same properties like the IgxPivotRowComponent
, which I think the list is longer if you just define the ones you need.
I would mean that you don't extend BaseRow
and only implement the RowType
and define only:
- index
- grid
- data
- viewIndex
- key
- expanded (I am not sure if we need this one though)
- selected
Also I am not sure you override the cells
getter when the implementation is the same.
Closes #14970
Additional information (check all that apply):
Checklist:
feature/README.MD
updates for the feature docsREADME.MD
CHANGELOG.MD
updates for newly added functionalityng update
migrations for the breaking changes (migrations guidelines)