Hi,everyone.
I wonder how to disable add/delete row button in the table. I have to make a table just to retrieve information into, so no need to add or delete row. How to code that?
Thanks in advance.
Hi,everyone.
I wonder how to disable add/delete row button in the table. I have to make a table just to retrieve information into, so no need to add or delete row. How to code that?
Thanks in advance.
You will need to do 2 things to accomplish this, no code necessary:
1. Under "Row type", uncheck the Repeatable checkbox
2. Under "Row labels", select "Add a row" for each row you would like the user to fill out.
If you'd like to learn about further customizing tables in Laserfiche Forms, feel free to take a look at the Tables page in the Laserfiche Forms help files.
To follow up on Caroline's answer. If you wanted to do this with CSS you can just give your table a CSS class, for example "My_Class" and then use the following CSS to hide the add/remove buttons:
.My_Class .cf-table-add-row {display:none!important} .My_Class .form-del-field {display:none!important}