Questions tagged as 'eventos'

1
answer

Event idea in laravel [duplicate]

I'm developing a system in Laravel (php). I read in several articles that "we should" use the "EVENTS" to perform actions after the main has been done, eg - > no controller: // I register a user // call event (store) - > in the eve...
asked by 08.06.2016 / 15:12
0
answers

Is there a socket.io event that activates when the client's internet is slow?

Hello. I'm in a project on nodejs + socket.io, I'm in big trouble, regarding slow internet client, I need to know if inside socket.io there is some kind of event // If the client's internet is slow it activates this function socket.event('i...
asked by 10.06.2016 / 22:03
1
answer

jQuery event without user interaction

I am accessing the MySQL database and giving a select in a table that will return several ddd's and phones, with this data I'll send to a server via get or post using jquery with ajax. The problem is that it will not have user interaction, it wi...
asked by 02.04.2015 / 14:15
1
answer

TilePane: how to create individual event on the buttons

I have a hard time using TilePane, I can not create an event for each button in the array. Follow the code for you to help me. 'TilePane tilePane = new TilePane(); tilePane.setPrefColumns(3); //preferred columns tilePane.setAlignmen...
asked by 30.04.2015 / 13:30
0
answers

Event Listeners and direct manipulation of Event Propagation

My recent inroads into PHP development were with respect to Event Handling and Event Listening. Through a Mediator it was possible to create a concise and elegant platform to raise extensibility to another level. As in Javascript, every...
asked by 11.12.2014 / 18:17
2
answers

How to check if there is a function in Titanium Studio?

I need to check if a View exists on an OnClick event that runs the test function if($.minhaview.propriedade == 'teste'){ alert("existe um evento onClick com o valor teste"); }     
asked by 03.02.2014 / 00:41
5
answers

Event is not tied to element

I have an event in jQuery (version 1.5) as follows: $('#refresh_abertos').click(function(){ // aqui o código irrelevante nesta pergunta }); It turns out that my #refresh_abertos element is only loaded later via ajax ,...
asked by 21.01.2014 / 14:25
1
answer

MVC / OO events system

I'm writing my first PHP application. From what I've been studying, I've chosen to learn Object Orientation and MVC. I am building this application following a book I have, and it is returning the following error: Parse error: syntax error,...
asked by 21.05.2015 / 09:14
1
answer

Wait for an event to be triggered to continue the C #

In the RealizarPesquisa method, when running the _WebBrowser.Navigate() line, the DocumentCompleted() event is triggered, but this event takes a while to execute, so the RealizarPesquisa method continues its process a...
asked by 14.07.2017 / 16:48
2
answers

Delphi Two methods for OnMessage

In Delphi, is it possible to set two methods for the event OnMessage of TApplication ? Detail: Both should work simultaneously. Eg: TApplication.OnMessage := MetodoA(); TApplication.OnMessage := MetodoB();     
asked by 05.11.2018 / 13:57