form-fields Questions
18
Solved
I am trying to change my labelText color when focused. I can change the text color but not when focused.
I have tried all the hint text colors and label text colors, but nothing helps.
Container(...
Effector asked 2/6, 2019 at 1:25
4
Solved
Which is the best way to create a django form field that accepts floats and has the same functionality as a NumberInput? What I mean with same functionality is that django's NumberInput has arrows ...
Thurman asked 14/1, 2015 at 18:3
9
Solved
My HTML has a class called .required that is assigned to required fields.
Here is the HTML:
<form action="/accounts/register/" method="post" role="form" class="...
Restate asked 17/4, 2014 at 19:31
3
Solved
Pretty much what I describe in the title. I have a pile of TextFormFields populated from Firebase when the app launches.
The user should be able to update these, and when they are done, click a su...
Dymphia asked 25/5, 2020 at 14:6
11
Solved
By suggestions, I mean the drop down menu appear when you start typing, and it's suggestions are based on what you've typed before:
For example, when I type 'a' in title field, it will give me a t...
Sialkot asked 31/3, 2017 at 4:52
2
I'm looking for some information/references/examples and how to use javascript in Bluebeam.
Bluebeam said that you can refer to the following AcroForm documentation :
https://www.adobe.com/conte...
Filigree asked 13/8, 2018 at 9:7
3
Solved
I am working on Symfony 3 and I have some trouble with my form.
When I create a Symfony form with a field not required, here is my code :
I create the form :
$form = $this->createFormBuilder(...
Dryfoos asked 18/8, 2017 at 15:14
9
Solved
I have a django model like below
models.py
class Product(models.Model):
name = models.CharField(max_length = 300)
description = models.TextField(max_length = 2000)
created = models.DateTimeFi...
Hallmark asked 21/10, 2013 at 8:39
4
We have an application with a login screen which has input field text and password. What I am trying to achive here is;
Prevent browsers to ask if, user wants it to be memorized by
browser.
Preve...
Suggestive asked 24/2, 2020 at 6:21
5
Solved
I am successfully implementing NullBooleanField as radio buttons in several ways but the problem is that I can not set the default value to None.
Here is the code:
models.py:
class ClinicalData...
Maltose asked 16/8, 2012 at 15:42
1
Solved
I make custom textformfield class and used it as a widget. I want to get the textformfields color,fontsize,align etc which I have set.How can i get this all properties which i have set to the textf...
Knifeedged asked 31/12, 2019 at 8:13
1
Solved
Working actually on form fields, I'm only using an outline appearance for my inputs (see more here).
Not wanting to copy appearance=outline everywhere on each form, I wanted to know if there was a...
Downbeat asked 22/1, 2019 at 11:10
2
Solved
I want to add a custom class to label tag in this code in Yii2, but I don't know how.
<?= $form->field($model, 'name',[
'template' => "{label}\n<div class='col-md-6'>{input}<...
Palmer asked 30/1, 2016 at 10:16
3
i have a hidden_tag like this in my form
<%= f.hidden_field :loc , {:multiple => true} %>
which renders to
<input id="business_loc" multiple="multiple" name="business[loc][]" typ...
Lauree asked 24/8, 2011 at 12:46
3
Solved
I have a large HTML form with multiple input fields (one in each row).
Among these I have several fields with a specific class that appear left from a button.
There are no other buttons or fields ...
Draggletailed asked 3/12, 2013 at 16:52
1
Solved
I have a form for uploading images.
If I follow Django's standard for cleaning a specific field attribute of a form, this is what my clean method would typically look like:
class UploadImagesForm...
Angleworm asked 18/1, 2013 at 5:6
2
Solved
I have a form in my Django that looks something like this:
class PersonnelForm(forms.Form):
"""
Form for creating a new personnel.
"""
username = forms.RegexField(
required=True, max_length=3...
Skycap asked 16/7, 2011 at 12:9
2
Solved
I am using JavaScript in a bookmarklet to populate form elements on a website:
javascript:var f = document.forms[0];
f.getElementsByTagName('input')[0].value = 'myname';
f.getElementsByTagName('in...
Formalin asked 15/9, 2010 at 12:1
1
© 2022 - 2024 — McMap. All rights reserved.