Questions tagged as 'eventos'

3
answers

What JFrame event allows me to execute a method while the JFrame is Open?

I am looking to implement an event of JFrame that allows executing a method as long as the JFRAME is active, If the method exists, can someone give me the name and an implementation example? PS: I tried the event windowAct...
asked by 29.03.2017 / 20:35
2
answers

Move elements clicked from one array to another

What I want to do is move an element from one array to another, but only those that the user selects and without JQuery, I am in Angular 4, I leave my code. Bold text <div class="create-cont-top-left"> <h5 class="clrGr...
asked by 26.09.2018 / 15:50
2
answers

show variable php in txt with onclick in button?

How can I put the result in the txt when I click on the button? without submit? thanks in advance for the help <?php function generarCodigos($cantidad=3, $longitud=10, $incluyeNum=true){ $caracteres = "ABCDEFGHIJKLMNOPQ...
asked by 13.09.2018 / 15:20
1
answer

How do I capture the event when an EditText is modified?

I need to capture the event of an EditText to erase the results I show on the screen.     
asked by 14.01.2018 / 02:52
2
answers

Pass data between windows

Good morning friends, I have the following question: can you pass data from a daughter window to a parent? I already know that you can pass data from a father to a daughter through ajax, but how do you do the opposite? It's something like...
asked by 21.02.2018 / 21:22
2
answers

How do I use an event inside a "class" javascript, from the mouseup of a container?

function MakeDrawable(containerID){ this.container = (document.getElementById(containerID) || document.body); this.onCreateElement = null;//Evento externo this.container.onmouseup = function(e){...
asked by 11.11.2017 / 21:08
1
answer

How to make an event by pressing two keys?

I'm doing a program where I want to include keyboard shortcuts. The program in question has a series of jTextFields that I want to fill directly with the keyboard without having to be jumping from field to field, and I also want to be able to do...
asked by 15.10.2017 / 12:10
2
answers

Change text of a label with javascript

Greetings. I have an Onblur event in Textbox : <asp:TextBox ID="us" runat="server" MaxLength="15" onblur="validar(this.id)" Width="232px"></asp:TextBox> Then a Label : <asp:Label ID="Label1" runat="server" Text...
asked by 21.07.2017 / 18:21
1
answer

onchange event in IE when modifying input value programmatically

I have noticed that in different versions of Internet Explorer the event onchange is not captured when the value of an input is altered by a function js, behavior that does not happen with other browsers such as Mozilla or Chrome. Inve...
asked by 08.07.2017 / 01:25
2
answers

Invoke OnClick event from an asp: LinkButton from JavaScript?

I need to invoke the session closing method from JavaScript (once the system counter reaches 0). Sight code: <asp:LinkButton ID="Lbtn_Salir" type="button" runat="server" OnClick="Lbtn_Salir_Click" OnClientClick="Lbt...
asked by 21.06.2016 / 16:56