Why did my fillable form fields stop working after I split or reordered a PDF?
You had a PDF with fillable text boxes, checkboxes, or a signature field โ maybe a form or an application โ and after splitting out a few pages or dragging them into a new order, the boxes are still visible but you can no longer click into them and type. The pages look right. The layout is right. But the form has gone dead. This is a specific, well-understood gap in how page-rebuilding tools work, not damage to your file.
A fillable field is two things, not one
What looks like a single text box on a page is actually two separate pieces in the PDF: a widget annotation drawn at a position on the page (this is what you see), and an entry in a document-wide form field registry โ the AcroForm, stored in the document's catalog, not on any individual page โ that tells a PDF viewer "this widget is interactive, here's its name, type, and current value." Without an entry in that registry, a widget is just a rectangle with an appearance stream. It renders, but nothing makes it clickable.
Tools that split or reorder a PDF by copying page objects into a brand-new document โ which is how this tool and most lightweight browser-based PDF tools work โ copy the widget along with the page, because it's physically part of the page's contents. But the AcroForm registry lives at the document level, outside any page, so a page-copy operation has no reason to touch it. The new document starts with no form registry at all, and nothing in a plain page-copy step creates one. The widgets ride along; the thing that makes them work does not.
Why this tool doesn't handle it (yet)
Split and Reorder here are built on pdf-lib,
the same client-side library the rest of this site uses, and both tools
call its page-copying method (copyPages) to build the output file.
That method copies exactly what a page needs to display correctly โ its
content, images, and any annotations physically anchored to it โ but it
doesn't inspect or rebuild the source document's AcroForm entry, and
neither tool creates one afterward. So a form field survives visually
but loses its registration as an interactive field in the output.
What still works after a split or reorder
- All pages and their visible content, including how a form field looks.
- Page order and page selection, exactly as you specified.
- Any values already typed into a field before you ran the split or reorder โ those are baked into the field's appearance and stay visible, just no longer editable.
What doesn't carry over: the field's interactivity โ you can't click in and type, check a box, or apply a new signature in the resulting file.
What to do if you need the form to stay fillable
- If the output needs to stay fillable, use desktop software that explicitly lists form-field or AcroForm preservation for split/extract/reorder โ most full PDF editors handle this correctly.
- If it's just a couple of fields, it's often faster to split or reorder here for the page layout, then re-add those specific fields from scratch in a form-editing tool.
- If the filled-in values are what matters and no further editing is needed, no action is required โ the values are visible and print correctly, they just can't be changed anymore.
Try it yourself: split a PDF or reorder its pages and check โ the layout and content will be exactly right, and now you know why any form fields go from fillable to fixed.