Questions tagged as 'eventos'

3
answers

How to use the preventDefault function in a click event inside an iframe?

I manipulate the iframe's DOM as follows: ( link ) $('iframe').contents().find('a').função(); We usually use the preventDefault function like this: $( "a" ).click(function( event ) { event.preventDefault(); }); Doubt: How do I u...
asked by 13.12.2014 / 06:10
1
answer

How to make an event work with xamarin.forms and C #

When I declare an event in my MainPage.xaml, I can not do the deployment. In the visual it says that the implantation was done successfully, but in my cell everything is white and can not even navigate in it, even music if I am listening I can n...
asked by 29.08.2017 / 21:58
2
answers

USERFORM: What is the difference between the Initialize and Activate routines?

What's the difference between using Initialize and Activate as a userForm's boot routine? Private Sub UserForm_Initialize() Private Sub UserForm_Activate()
asked by 27.04.2017 / 19:23
2
answers

How to create a robot using requests in Java?

I have been interested in making robots to perform small repetitive and boring tasks. I use a class of Java called Robot. However, I think the way I'm doing is not the most appropriate, because it's a pretty handy robot that works with mo...
asked by 14.03.2014 / 18:22
1
answer

Cancel event queue in Javascript / Jquery

So, I have a loop that will awaken some 10 functions that are AJAX requests, in functions, which encompasses AJAX requests is a setTimeout() , what happens is that the loop is executed on time, and every time 10 seconds (as I have determine...
asked by 26.03.2015 / 19:46
1
answer

Texblock - Make a text-changing event

I have already seen that the TextBlock property does not have an event when the text changes. Is there any way to do an event when the text changes? * Remembering that it is for WPF and not Windows Forms. This question is only for WPF...
asked by 18.12.2017 / 15:24
1
answer

What is the difference between stopPropagation and stopImmediatePropagation?

I realized a while ago that it was possible to use these two functions, but what would be the difference between them? What is the difference between event.stopPropagation() and event.stopImmediatePropagation() in Javascript?  ...
asked by 26.05.2017 / 20:48
1
answer

Disabling ActionLink CLICK event

I have the following link in my view: @Html.ActionLink(" ", "Editar", new { id = item.ID }, new { @id = "btnEditar" }) And while loading the page, I have to block this link, depending on the user's profile. I'm trying to disable link click...
asked by 29.08.2016 / 19:34
1
answer

How to disable / enable a dblclick JQuery event

Good morning, next, I'm trying to make a fast CRUD mode, in editing, for example, ADM gives 2 clicks in the field to be edited, and the field becomes editable with 2 buttons on the right, one to confirm and another to cancel. What I have done...
asked by 28.08.2016 / 19:06
1
answer

Trigger events remotely

What is the best way to remotely trigger / receive an event in C# ? Example: When you click a button on PC1, perform a certain task on the other PCs that own the app. I thought of 3 solutions: Socket Query the database in...
asked by 19.03.2015 / 20:27