Questions tagged [fillable]

21 questions
2
votes
1 answer

Laravel 5 insert works without $fillable

I have a Laravel application made by someone else. In the controller I have this: namespace App\Http\Controllers; use Illuminate\Http\Request; use App\Result; class StoreInDB extends Controller { function store($uuid, $session){ //…
Alexking2005
  • 325
  • 1
  • 4
  • 16
2
votes
2 answers

Update non fillable field in Laravel?

I would like to import data from an old database, so I would like to fill some fields such as password. The User model looks like this: class User extends Authenticatable { protected $fillable = [ 'name', 'email', 'password',…
nowox
  • 25,978
  • 39
  • 143
  • 293
1
vote
1 answer

Apache PDFBox segmented digits display not working

I have a fillable pdf in which i have a field IFSC code to be filled. This is my code to fill the acroform public String generatePreFilledMandateForm(PnachDownloadRequestDto request) { ByteArrayOutputStream byteArrayOutputStream = new…
1
vote
1 answer

Adobe Acrobat Form - Text Field Issue

I have created a fillable form. The form works correctly and can be filled in easily when I open it in Adobe Acrobat Pro or Adobe Acrobat Reader DC on my Desktop. However, when I open the same form on a smartphone (android), the text field does not…
Andy R
  • 379
  • 2
  • 5
  • 17
1
vote
0 answers

Fillable Pdf multi-line, Allow rich text formatting in Acrobat Pro DC: but it ignores line spacing/leading set in More

I'm on Win10, using Acrobat Pro DC 2021.011... to edit and Reader DC (same version) to test. From experience and from reading forums etc, forms in these apps are maddening... but I have not been able to find any discussion (or solutions) to the…
A Zook
  • 37
  • 7
1
vote
0 answers

Laravel PDF file cant submit

Itried to generate editable pdf file with laravel and then submit the modification, but i have some issue : 1- the value of the button is not showin 2- when I submit i have this error in console : Failed to load resource: the server responded…
1
vote
1 answer

Laravel - how to handle not required/optional field in $fillable insert and update

I have table with below fields. Only name is required and rest of them is optional 'name','no_of_color','offset_printing_rate','screen_printing_rate','positive_rate','regular_plate_rate','big_plate_rate', My model protected $fillable = [ …
omkar
  • 47
  • 11
0
votes
1 answer

Mathematical Calculations Not Working in Fillable PDF Forms

As a mobile application developer working on a project that involves fillable PDF forms with automated calculations, I'm facing two queries that I need assistance with: The automated calculation feature works perfectly in Chrome browsers, but when…
Mahipalsinh
  • 3
  • 1
  • 2
0
votes
0 answers

Show a PDF form on a webpage, let the user fill the data, flatten it and save the document as PDF/A

Hi I'm trying to achieve the following: Show a PDF form on a webpage. Let the user fill the data needed. Check if all is filled correctly. Save the document as PDF/A. I have tried many samples, but none seems to work. The problem is not the…
Loiko
  • 1
  • 1
0
votes
0 answers

Validating pdf form fields in Adobe acrobat pro

I'm creating a fillable form in Adobe acrobat pro and I would like to insert a button the will check that all required form fields are complete. If they are, I want the form to be sent to me in an email. I added this JavaScript to trigger on mouse…
0
votes
0 answers

Lock parts of fillable PDF possible?

I don't know if this is possible... I created a form document with LibreOffice XML Editor. When I export it as PDF, the PDF is fillable. So far so good. In the document is a table which contains multiple option fields. I want to create a button or…
crally
  • 29
  • 3
0
votes
1 answer

how to change the character spacing in a field of fillable pdf form using javascript

I am modifying a pdf as fillable. I have changed the spacing between the letters in the fields. as one number into a single cell. How to do this with JavaScript? The following code didn't work either var field = this.getField("field1"); var…
TipVisor
  • 1,022
  • 10
  • 21
0
votes
0 answers

How to implement all format options in fillable forms using PDF BOX 2

I need to apply the below mentioned format properties on Acrobat DC to my text box fields. Fields where created using below snippet, private static void addTBField(PDAcroForm acroForm, PDPage page, String name, float x, float y, float width, …
0
votes
1 answer

Can Laravel model validate the field data types(int,float,..etc) while inserting data?

My problem is that I'm using noSql for my database and Laravel for the backend. I know that we can validate the data types in the request but this validates only the incoming request after that we might calculate or re-arrange the data type of a…
0
votes
0 answers

python fillable pdf - space above field values when built from pypdf2, but not from pdftk

This is the workflow we've been using to generate a fillable pdf, then fill it in python. The filling process requires installation of pdftk, and we'd like to get rid of that dependency. generate .odt in LibreOffice Writer (7.3.4.2), with form…
Tom Grundy
  • 736
  • 5
  • 26
1
2