Skip to content

Table summary row + Inline add new row #1114

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

Merged
merged 10 commits into from
Aug 27, 2024
Prev Previous commit
remove commented code
  • Loading branch information
raheeliftikhar5 committed Aug 27, 2024
commit 7f157dbb4b7d55fd04baa490980f399e7263b044
15 changes: 0 additions & 15 deletions client/packages/lowcoder/src/comps/comps/tableComp/tableComp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -231,17 +231,6 @@ export class TableImplComp extends TableInitComp implements IContainer {
})
)
);
// actions.push(
// wrapChildAction(
// "columns",
// comp.children.summary.children.columns.dataChangedAction({
// rowExample: nextRowExample || {},
// doGeneColumn: doGene,
// dynamicColumn: comp.children.dynamicColumn.getView(),
// data: comp.children.data.getView(),
// })
// )
// );
doGene && actions.push(comp.changeChildAction("dataRowExample", null));
setTimeout(() => {
actions.forEach((action) => comp.dispatch(deferAction(action)));
Expand All @@ -264,10 +253,6 @@ export class TableImplComp extends TableInitComp implements IContainer {
"columns",
comp.children.columns.reduce(comp.children.columns.setSelectionAction(newSelection))
);
// comp.children.summary = comp.children.summary.setChild(
// "columns",
// comp.children.summary.children.columns.reduce(comp.children.summary.children.columns.setSelectionAction(newSelection))
// );
needMoreEval = true;
}

Expand Down
Loading