Skip to main content
Filter by
Sorted by
Tagged with
0 votes
2 answers
51 views

In my Next.js application, I created a custom React hook called useFormChangeDetector. As the name suggests, it detects changes to fields and compare the new values with the original ones, in order to ...
VdfX89's user avatar
  • 83
0 votes
1 answer
64 views

I have a Word doc that has Content Control boxes and Form Fields. My macro deals with the Form Fields without issue because of: Dim oMPERFields As FormFields Set oMPERFields = LogFile.Formfields The ...
user27178816's user avatar
0 votes
1 answer
182 views

I am using form.setFieldValue to modifying the form field value which contains the combination of serial and number. But it only takes the number part even though I put them together and created a ...
Konul Memmedova's user avatar
1 vote
1 answer
282 views

As per the iText 8 version migration from iText 5.5. We are unable to extract the tag from PDF by using new iText 8 code but able to extract using old iText 5.5 code. Below is the code to get the tags....
Rajendra Desale's user avatar
0 votes
1 answer
155 views

<div class="ui-lg-3 ui-md-2 ui-g-12 story-section"> <mat-form-field rds-form-field class="w-90"> <mat-label rds-form-field-label>End Date</...
jayanti khutwad's user avatar
0 votes
0 answers
116 views

I'm trying to link address lines (IF References) to a location dropdown list but it doesn't seem to work. Please see snippet of code below, what is wrong with the code cause when I select a location ...
Morne Petersen's user avatar
3 votes
1 answer
3k views

I have been trying to place 2 MUI inputs under the same label to create a custom field. I found the solution by wrapping the fields in another TextField as a div, but this has some undesired effects ...
mdonehundy's user avatar
  • 1,469
0 votes
1 answer
148 views

Some time ago, I created this macro with vba which worked very well with Office 2003. It still works with Office 2021 as long as you don't modify the Word file. If I change it, it can no longer see ...
Roberto Panciera's user avatar
0 votes
1 answer
243 views

I'm modifying this code and need to place the "optionals" div in the product summary hook, if I replace the but if I replace woocommerce_before_add_to_cart_button with ...
Filippo's user avatar
  • 153
0 votes
1 answer
82 views

I am trying to write some code in Excel which loops through a number of documents and extracts details from FormFields. The documents are all produced from the same template and users can only enter ...
Jamie H's user avatar
1 vote
0 answers
60 views

I'm working on a Django project and facing difficulties while trying to create a multi-value form field called ProductPropertyField. My goal is to include multiple instances of ProductPropertyField ...
get_into_jinto's user avatar
0 votes
0 answers
191 views

I tried to hidden a form field in pdf using latest Itext 7, but could not find any solution. I've searched the web, got example like that: using (PdfReader reader = new PdfReader(src)) { using (...
zhe li's user avatar
  • 11
0 votes
0 answers
63 views

I try again publishing this: I need to fill forms from one formular to another pdf document: link to the final pdf document: https://entreprendre.service-public.fr/vosdroits/R23301 here the function ...
jaime sastre's user avatar
1 vote
0 answers
35 views

I would like to fill in the textfield on the html and when I click the button, the value of that textfield should automatically be passed onto the value for "name" under CURLOPT_POSTFIELDS. ...
worldprogram2020's user avatar
1 vote
1 answer
84 views

I use a for loop, which takes attendee details for an event. Currently, it generates the statements based on the total number of items in the cart, displaying in checkout some group of fields based on ...
Blakar1988's user avatar
1 vote
1 answer
1k views

By design all three forms - checkout, register and edit_account are the same. So I have to add all needed fields to edit account form, because edit address form from myaccount isn't needed by design ...
libertarian's user avatar
0 votes
1 answer
705 views

I need a Word macro to check, upon file exit or file close, that certain specified text fields (legacy form fields, not content controls) are empty. I have code that is a pretty intrusive warning box. ...
Guitarmageddon's user avatar
0 votes
0 answers
587 views

I am working on a woocomerce project that has Paypal as one of the payment gateway options. Here I am using WooCommerce PayPal Payments plugin by WooCommerce for integration. Now while I am testing, ...
Sourav Das's user avatar
0 votes
1 answer
291 views

I am using the following code to display the date in a form. In the form I have a field titled "Duration" being weekly rental eg 3 weeks, 5 weeks etc.. I would like the "Return Date&...
Jeff Ryad Arlan Cal's user avatar
0 votes
1 answer
848 views

And it returns me this: 'FormField' cannot be used as a JSX component. Its return type 'void' is not a valid JSX element.ts(2786) I don't know what I'm doing wrong. I've created a component called '...
Ahmed Chercheri's user avatar
0 votes
1 answer
99 views

I want to populate a list of names in a dropdown list using form_dropdown(...) and fetch the matching name accordingly. Both my model and controller classes seem to be working fine, but I am unable to ...
K.Chams's user avatar
  • 33
0 votes
1 answer
126 views

I have next form: class ExampleForm(forms.ModelForm): class Meta: model = ExampleModel fields = ['field1', 'field2', 'field3'] widgets = {'field1': forms.Select(attrs={'onchange': '...
kims9's user avatar
  • 65
0 votes
0 answers
293 views

When building a custom form field by extending FormField (with a TextFormField centered within two IconButtons), I encounter unexpected issues with the keyboard. After a state change due to a button ...
Taco's user avatar
  • 700
0 votes
2 answers
1k views

I would like to parse form fields from signed PDF's. With this I mean for example the checkboxes. I have already tried different ways (with Python) like PyPDF2, pikepdf or even pdfminer, however I ...
idontknowiteither's user avatar
2 votes
1 answer
3k views

I want to change the appearance of an Mat-Form-Field with the appearance "outline". So it should have a wihte background and white border. We already tried using: encapsulation: ...
eazyennocodes's user avatar
0 votes
0 answers
25 views

I have a list of radio buttons for guests to select whether they're attending an event or not. A party can have several members, so multiple yes/no options can exist on the same page. Idea is that a ...
Freddy's user avatar
  • 865
0 votes
0 answers
130 views

I tried to assign an empty array to the form field in react redux form. change('data',[]) ,but it didn't worked. other fields assigning are working when I used change('feild1', 'test data'). Can ...
SamDevG's user avatar
0 votes
2 answers
627 views

I started studying Javascript about two weeks ago and I'm already trying to do some stuff for my company's website. We have a wordpress elementor website, in which I created a new registration form, ...
Gabriel Theofelo's user avatar
0 votes
1 answer
338 views

Still a newbie with flutter and was wondering if someone could help me with a problem I'm having. I am trying to create a registeration form with email, password, password confirmation, a county and a ...
Rasse's user avatar
  • 1
0 votes
2 answers
305 views

I'm a beginner programmer and attempting to write a vb.net code to fill pdf forms using Sautinsoft or ASPOSE. My goal is to populate the fields within a pdf template using the data from the data set. ...
Soumya Santhosh's user avatar
0 votes
0 answers
177 views

My search bar is using a form_tag type, and I can search and enter and it will show results, but it will not give autocompletion or suggestions when typing in the search bar. When the user starts ...
Mergo22's user avatar
  • 79
-1 votes
1 answer
148 views

In MS Word version 2202 (2019) I have a legacy form field (a plain text box) in a document that calculates on exit and fills a number of other fields with the result of calculations. I'm looking for a ...
4820revise's user avatar
3 votes
0 answers
536 views

I'm working on a form in which I want to have the functionality for autofill. Unfortunately, I'm trying to use the AutofillGroup widget with TextField or TextFormField with autofillHints setup but ...
Philipos D.'s user avatar
  • 2,360
1 vote
1 answer
2k views

I'm wanting to have multiple input fields have a live output without having to hit submit and have the ability to copy/paste the output. Ex: <input id="name1"> <input id="name2&...
Malik's user avatar
  • 21
0 votes
1 answer
553 views

I have a GET request with parameters and a formField. It works when I use a client like Insomnia/Postman to send the req. But the route test below fails with the error: ...
Jules's user avatar
  • 23
0 votes
1 answer
2k views

Say I am visiting an online form that uses Material UI, like this https://codesandbox.io/s/material-demo-forked-kigre?file=/index.js I want to populate the input field with some value using console ...
user1589188's user avatar
  • 5,798
0 votes
1 answer
188 views

So I have this wtforms: ProfessionalAddress = FormField(AdressForm, default=lambda: ProfessionalAddress()) which links a sub form to my main form. To make sure the subform shows up, I added the ...
Augustin Riedinger's user avatar
1 vote
1 answer
1k views

Ok, I am sure this already has an answer somewhere, but I can honestly tell you that everything I have tried, has failed. Here is my current configuration: Shared _Layout.cshtml (below the footer) <...
David.Warwick's user avatar
0 votes
1 answer
235 views

I have to generate a Pdf file with Itext, and make it editable by the user. Thanks to Itext, that's almost OK. There is a problem, still. How can I show a field has been modified by the user, that is ...
Vatchemao's user avatar
0 votes
0 answers
179 views

Downloaded pdf with form field from code Adobe sign tool duplicating the form fields I have tried creating date fields and signature fields for PDF using iText5 Library and generated the PDF. In the ...
Charu Anand's user avatar
1 vote
1 answer
752 views

I am using Django/Wagtail and the wagtailstreamforms package to build forms. Unfortunately you cannot add two fields side-by-side in the wagtailstreamforms form builder out of the box, so I am trying ...
SidS's user avatar
  • 326
0 votes
0 answers
84 views

When I use the Get Order Shipping Addresses operation of the BigCommerce API, it returns a rather badly structured XML string. The part that is the problem is the form_fields node. Within this node, ...
Andrew Longland's user avatar
2 votes
1 answer
1k views

I'm facing an issue with Nebular and Angular 12, i'm trying to add an icon inside of an input, for that i'm using the tag like the documentation told me to do. But it return me this error : ERROR ...
Guillaume G.'s user avatar
0 votes
1 answer
1k views

I am trying to extract field names and the corresponding field values from an e-signed PDF form, which I uploaded onto Adobe Sign and obtained e-signatures. See link: https://documentcloud.adobe.com/...
AIBball's user avatar
  • 341
0 votes
1 answer
141 views

I'm using WTForms to create a form with fields that have "sub fields" like so - class TableName(FlaskForm): schema = StringField('Schema', validators=[DataRequired()], id = 'schema_name') ...
user5394117's user avatar
0 votes
1 answer
131 views

I am trying to insert data from an Access Database into a Word document. I cannot do it using simply Merge functionality, since the information I want to get does not come always from the same ...
Mister Equis's user avatar
0 votes
0 answers
815 views

I'm thinking about adopting react-final-form to build some admin forms that I use on my web app. I'll need to build an input component for image uploads that should be able to do the following. It's ...
cbdeveloper's user avatar
  • 31.9k
0 votes
1 answer
582 views

Enter your password <input matInput id="signup-credentials-password" type="text" style="color: #999999; font-size: 16px;" #passwordSignup minlength=&...
Horia-Andrei CIULICA's user avatar
0 votes
2 answers
626 views

Beginning in build 2102 of MS Word, a very elaborate document that I have created no longer works properly. My form makes extensive use of FormFields. Starting with build 2102, it appears that Word ...
Michael Pail's user avatar
1 vote
1 answer
691 views

I'm working on a Sylius application and want to remove a form in the admin backend. In this special case it's the field on_hand (in the ProductVariant creation and update context), that shouldn't be ...
automatix's user avatar
  • 15.2k

1
2 3 4 5 6