Widget click events stopped processing

JohnK

Active Member
Licensed User
Longtime User
Hi,

I'm a little confused at to why my widget click event, that used to work, has stopped processing?

I have an Image view (one of many) in the designer, with the event name filled in, matching the sub in the service module. But when I click on it, nothing.:sign0010:

Whats worse is that it used to work, and I have not touched the designer OR the sub handling the event since it did work, but now it does not! :BangHead:

The one thing I have changed since it did work that I thought might of had an effect was the call to "ConfigureHomeWidget"; I passed the "CenterWidget" param as true, but now I set it back to not being passed in, to no avail.

I can see the image is visible, and I also have a click on a background image view (which is in areas not covered by the first ImageView) that also has a click event which has also stopped working. I was using the click events to enter the widget config. I have log events as the first line on both events, which are clearly not being called. The second image is covered by other ImageView's, but it previously received the click event, but now has stopped.

So I guess ALL my events between my widget and code have disconnected. But the widget itself is working well otherwise.

What would cause the "Click" events to become disconnected? and more importantly, how can I reconnect them?
 

JohnK

Active Member
Licensed User
Longtime User
OK, I just tried something "crazy" and it appears to have worked (partially).

I was originally supprised that the click events appeared to be "sunk" through to the first ImageView in that screen area, that actually had an event defined. So, if my foreground images had no event defined, the corresponding background image received the event; but that has stopped?

I just need to reassign my events and I will be back to where I started. But I still do not understand what changed? :sign0163:
 
Upvote 0
Top