Questions tagged as 'input'

1
answer

Sending emails with dynamic inputs

I'm using a code like this: link to add fields to my form. How would php be to submit forms in this way? Following is the current php code: <?php header("Content-type: text/html; charset=utf-8"); ?> <?PHP if ( isset( $_POST['...
asked by 12.03.2018 / 15:05
2
answers

Input number accept point in firefox

Can you help me? I have this input number that must accept values in decimal. People fill in the decimal point (.) And not with a comma (,) In all browsers it works just fine, EXCEPT in firefox which is our default browser. (Firefox is...
asked by 30.01.2018 / 15:19
2
answers

From select to input

How in a form with a select field when option = outro would always change to input ? How to do? <form action=""> <div id="alvo"> <select name="opcoes" id="select"> <option value=""&...
asked by 05.03.2018 / 23:21
1
answer

Submit file with jquery

Good afternoon, I need a code that simulates the submission of an input file file that when selected some value, it submits to the php in the same way as if it were submitting in an html form. For example <form action="" method="post" encty...
asked by 19.01.2018 / 18:13
1
answer

How can I check the text size of a React-Native input?

Hello, I need to get the text of an input in react-native and check if this typed text has less than 11 characters, how could I do that check? I'm new with react     
asked by 25.11.2017 / 14:37
1
answer

Input added with .append () does not send the POST data

The script below adds groups of fields to a form. Until then, okay. The fields are added but when I send the form I only receive the data from the fixed inputs, those that are added dynamically are not received. Code: $(document).ready(...
asked by 24.10.2017 / 16:18
2
answers

Input is not appearing checked

I have input of which according to the user's data in its session it is marked or not. The problem is that even input has property checked="checked" , it is not marked. Code of input along with div of...
asked by 30.11.2017 / 20:29
1
answer

ASP .NET MVC - Use an @Html.DropDownList for two ActionResult

Hello, I'm developing an application with ASP .NET MVC and using the EPPlus API for XLS export. In the View of an equipment report I have two @Html.DropDownList with Equipment Type and Status respectively. To display the report...
asked by 19.10.2017 / 19:50
1
answer

Dictionary as input argument is being modified within function

In the code below the dictionary used as input argument is also being modified by the function. Do I have to% always%? def muda(a): a['valor'] = 50 return a dic1 = {'valor': 12} dic2 = muda(dic1) print(dic1) {'valor': 50} print(dic2)...
asked by 05.10.2017 / 02:46
1
answer

PHP - MODAL window

I have tried some scripts but I have not tried it, I apologize if it has already been in a forum, but I looked for modal and nothing suited my need, I have a modal inside the button Client, which upon clicking loads a table with data coming fr...
asked by 14.09.2017 / 15:20