Questions tagged as 'formularios'

1
answer

How to pass data obtained from js to an input of html?

Well my question for some will be basic but it turns out that I am doing a program that increases a button pressed, all right up to here, the problem is that    I want that increment to be printed in an html input since this   I'm doing it wi...
asked by 01.10.2018 / 03:08
1
answer

Selecionador Default option of a database

I have a table "put" this table contains the following fields id puesto 1 empleado 2 director 3 programador already having the ID correcpondiente to the user and the data contained by a submith in $id = $_GET['id']; I want my se...
asked by 09.08.2018 / 16:44
2
answers

Prevent Chrome autocomplete form, does not work autocomplete="off" in input

Good morning, I'm having problems with Google Chrome and the autocomplete. I do not want some fields of my form to be autocompleted and I added the attribute: autocomplete="off" This in Chrome is not working, but in other browsers such...
asked by 05.01.2018 / 12:24
1
answer

Validate a form with django

I'm on my first project mounted on a server and I've chosen the django framework. I'm making an application that shows values from a mineral database that I've made, and that has a search field with the form tag: <div class="container" styl...
asked by 14.11.2017 / 20:43
1
answer

problems in form with input text and input file

I'm doing a project that requires a form with several input text fields and an input file, and something very curious happens to me and I just give the attribute enctype="multipart/form-data" to the form, the input text data are not sent...
asked by 20.12.2016 / 01:28
1
answer

How to make a form on android and send the information to an email?

Hello I am creating an android app and I want to create a contact form that was sent to my mail I would like you to help me I am new to this. thank you very much     
asked by 05.09.2016 / 20:43
1
answer

Problem with Laravel Collective form

It turns out that I am trying to send data, in Laravel , through a form using Laravel Collective . But when I press the Register button (the one that starts the request to send the data) nothing happens. Checking the console, it shows me tha...
asked by 15.11.2016 / 14:26
2
answers

Is it possible that $ _POST only select textarea that have a value?

I have 2 web pages, one that is the main one (a form), which I am asking for some data by textarea and with a button I give them the option to generate more textarea to be able to continue writing. <script language="JavaScript">...
asked by 23.03.2017 / 11:59
1
answer

Edit form fields in Django to modify the input object

I need to validate a form, but Foundation Abide PlugIn works by selecting the input fields that have the required tag added: <input type="text" placeholder="1234" aria-describedby="exampleHelpText" required pattern="number">...
asked by 15.02.2016 / 01:11
2
answers

KeyPress to close a form

I try to make some forms close by pressing 'Esc', using Private Sub UserForm_KeyPress(ByVal KeyAscii As MSForms.ReturnInteger) If KeyAscii = 27 Then Unload Me End Sub But it does not work. Neither with KeyDown or KeyUp ....
asked by 22.12.2016 / 08:53