Hello,
How can I achieve that with a click on a button the entry in a row gets erased.
Can anyone help?
Thanks in advance!
Hello.
You can do that with a simple javascript: Base - SeaTable Programming Manual
Thank you for the quick reply.
I do not want to delete the complete row I only want to delete the entry of a column in that row.
In my case when I click the button 4 things should happen:
- Date in column “SERVICE” changes

- Checkbutton in column “GRATIS?” changes

- Checkbutton in column “BESTÄTIGT?” changes

- Value in column “VERRECHNEN” gets erased

So far I have this in my script:
const table = base.context.currentTable;
const row = base.context.currentRow;
base.modifyRow(table, row, {'SERVICE' : row['Berechnung Termin'] });
base.modifyRow(table, row, {'GRATIS?' : false});
base.modifyRow(table, row, {'BESTÄTIGT?' : false});
What line of code do I need to erase the value?
Again, thank you very much!
![]()
OMG!!! I was so sure that you need a script for something like that so I did not even look close enough.
Sorry for wasting your time ![]()
Thank you!!!
No problem. There is so much more to discover. Just click on every button you can find ![]()
This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.
