feat: Ability to add new row in Table widget#17515
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
|
Unable to find test scripts. Please add necessary tests to the PR. |
7f8b2db to
89adeaa
Compare
89adeaa to
cae5984
Compare
e312ad1 to
b054182
Compare
|
/ok-to-test sha=b054182 |
|
Unable to find test scripts. Please add necessary tests to the PR. |
6 similar comments
|
Unable to find test scripts. Please add necessary tests to the PR. |
|
Unable to find test scripts. Please add necessary tests to the PR. |
|
Unable to find test scripts. Please add necessary tests to the PR. |
|
Unable to find test scripts. Please add necessary tests to the PR. |
|
Unable to find test scripts. Please add necessary tests to the PR. |
|
Unable to find test scripts. Please add necessary tests to the PR. |
|
Tests running at: https://github.com/appsmithorg/appsmith/actions/runs/3327905156. |
app/client/src/components/propertyControls/TableInlineEditValidPropertyControl.tsx
Outdated
Show resolved
Hide resolved
app/client/src/components/propertyControls/TableInlineEditValidPropertyControl.tsx
Show resolved
Hide resolved
app/client/src/components/propertyControls/TableInlineEditValidPropertyControl.tsx
Outdated
Show resolved
Hide resolved
app/client/src/components/propertyControls/TableInlineEditValidPropertyControl.tsx
Show resolved
Hide resolved
app/client/src/components/propertyControls/TableInlineEditValidPropertyControl.tsx
Show resolved
Hide resolved
app/client/src/widgets/TableWidgetV2/component/header/actions/PageNumberInput.tsx
Show resolved
Hide resolved
app/client/src/widgets/TableWidgetV2/component/header/actions/PageNumberInput.tsx
Show resolved
Hide resolved
|
/ok-to-test sha=53354d0 |
|
Tests running at: https://github.com/appsmithorg/appsmith/actions/runs/3383176142. |
|
/ok-to-test sha=d40f77d |
|
Tests running at: https://github.com/appsmithorg/appsmith/actions/runs/3384975264. |
| }); | ||
|
|
||
| it("24. should check that doesn't grow taller when text wrapping is disabled", () => { | ||
| it.only("24. should check that doesn't grow taller when text wrapping is disabled", () => { |
There was a problem hiding this comment.
Should the only be removed here and line 698?
eb9dc87 to
7b090f2
Compare
|
/ok-to-test=7b090f2 |
|
/ok-to-test sha=7b090f2 |
|
Tests running at: https://github.com/appsmithorg/appsmith/actions/runs/3398567971. |
Description
Introducing the ability to add a new row in the table widget.
Link to PRD - https://www.notion.so/appsmith/Adding-a-new-row-in-the-table-0ec90544d26c4c25ab1f9b2504e919a1
Fixes #13672
Type of change
How Has This Been Tested?
Added a new spec file with the following cases
Table widget Add new row feature
should test that allow Add new row property is present
should test that Add new row link appears on the UI when the allow add new row property is enabled
should test that onSave, onDiscard and default row are showing up only when the allow add new property is enabled
should test that add new row link is disabled during the inline editing flow
should test that clicking on add new row link adds an empty row at the top of the table
should test that editing is disabled when in add new row in progress
should test that new row is getting populated with the default row property value
should test that inline editing, row selection, pagination, search, filters are actions cannot be performed while in add new row feature
should test that only editable column cells are in editmode in the new row
should test that newRow property holds the entered data
should test that non data (iconBitton, button, menubutton) column cells are not showing up
should test that validation is working for a new row cell
should test that validation variable isNewRow is working
should test that validation is working for more than one add new row cell at a time
should test that validation error message only appears when a cell is in focus
should test that save button is disabled when there is an error
should test that discard button is undoing the add new feature
should test that discard events is triggered when user clicks on the discard button
should test that save event is triggered when user clicks on the save button
Checklist: