0
Explorer
,
/t5/acrobat-discussions/delete-data-in-fields/td-p/11494399
Oct 09, 2020
Oct 09, 2020
Copy link to clipboard
Copied
Hello. I have 100 fields with numbers. How can I delete these numbers (not the fields) at once?
Thanks.
TOPICS
PDF forms
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
1 ACCEPTED SOLUTION
Community Expert
,
/t5/acrobat-discussions/delete-data-in-fields/m-p/11494453#M280769
Oct 09, 2020
Oct 09, 2020
Copy link to clipboard
Copied
Reset the form.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Community Expert
,
/t5/acrobat-discussions/delete-data-in-fields/m-p/11494453#M280769
Oct 09, 2020
Oct 09, 2020
Copy link to clipboard
Copied
Reset the form.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Community Expert
,
/t5/acrobat-discussions/delete-data-in-fields/m-p/11494460#M280770
Oct 09, 2020
Oct 09, 2020
Copy link to clipboard
Copied
Hi,
If you want to reset them to default values then you could use:
// reset all fields
this.resetForm();
// or specific fields
var fields = new Array();
fields[0] = "P1.OrderForm.Description";
fields[1] = "P1.OrderForm.Qty"; this.resetForm(fields);
Regards
Malcolm
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
klothoskir
AUTHOR
Explorer
,
/t5/acrobat-discussions/delete-data-in-fields/m-p/11494485#M280773
Oct 09, 2020
Oct 09, 2020
Copy link to clipboard
Copied
I would like to clear the fields.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Community Expert
,
LATEST
/t5/acrobat-discussions/delete-data-in-fields/m-p/11501859#M281160
Oct 12, 2020
Oct 12, 2020
Copy link to clipboard
Copied
HI,
Do any of your fields have default values specified?
Regards
Malcolm
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

