We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7386919 commit f9b70a3Copy full SHA for f9b70a3
samples/grids/tree-grid/cell-editing-sample/src/index.ts
@@ -59,7 +59,8 @@ export class Sample {
59
public webTreeGridCellEditCellTemplate = (ctx: IgcCellTemplateContext) => {
60
let cellValues: any = [];
61
let uniqueValues: any = [];
62
- for(const i of (this.roleplayTreeGridData as any)){
+ let roleplayData = this.roleplayTreeGridData
63
+ for (const i of (roleplayData as any)){
64
const field: string = ctx.cell.column.field;
65
if(uniqueValues.indexOf(i[field]) === -1 )
66
{
0 commit comments