PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → [wm21 - android] BUGS control template event assign ..value not trigger
[wm21 - android] BUGS control template event assign ..value not trigger
Iniciado por guest, 12,oct. 2016 14:30 - 1 respuesta
Publicado el 12,octubre 2016 - 14:30
Hi,

I found that the event "assigning The ..Value property" in control template not trigger.

I have control template with a looper. which has procedure LoadData

when call CTPL_test.loadData will start thread to retrieve data from webservice and fill the looper.

in CTPL_test event "assigning The ..Value property" I put code info("assign value")

create a window and add the ctpl_test control template then add a button

code in button
CTPL_test.loadData()
CTPL_test..value = "this is test"

by right the info("assign value") will be trigger but it doesn't . the whole event "assigning The ..Value property" will not be call and no error

but if I add wait
CTPL_test.loadData()
multitask(100)
CTPL_test..value = "this is test"

this time the info("assign value") popup

interesting bugs right ? took me whole day to discover it
Publicado el 13,octubre 2016 - 10:29
The problem is also effect retrieving the ..Value property of control template.