In my programming I have two div with buttons to hide them and I have two inputs: nota1 and nota2 and I have a button to add those two inputs. I want those two buttons to be added only when the div1 is hidden....
You see, I'm reading an xml file where each entry has the following format:
<BatchIdentifier>[ID_FACTURA]</BatchIdentifier>
I capture each line in the file with:
string line;
while(getline(plantilla,line,'\n')){//PARA HACER L...
Apparently when I place a ui-select within many elements, the placeholder of this element gets a width: 10px (I do not know why), which is a problem because apart from seeing that element badly, it can only be selected giving clicking just where...
I have the following case to solve:
In a table, where I add separate rows using the "Add" button, I have a combobox that brings data from the database and I need the input price_service to be automatically completed depending on the option...
is the first time I ask for help since I'm stuck in a code for a few days, I looked for tutorials and help online but I could not solve them, so I go to bother them a little while to see if someone can give me a hand.
I'm doing a form in html...
My current project consists of a section in which through a javascript (preferably), you have to write a word in an input. Then, you could know if it is the correct word or it is not, then it would be incorrect.
I have been thinking about all...
Good afternoon!
I am creating a visitor registration form for commercials.
I need to extract in an "input type=" text "as the default value:
The commercial agent's code, (it is not the same as the client's id)
This is the form:
...
In the following code I want that when modifying any of the 2 inputs change the other one with its respective operation but taking the variable from the one that has just been edited.
function calcular()
{
var valor1= parseFl...
I have created the following table in a SQL database:
create table session(
SessionId int auto_increment unique,
SessionIni datetime,
SessionFin datetime,
UsHGTAG int,
PcId int,
primary key (SessionId)
);
How...