https://windevdesenvolvimento.blogspot.com/2021/06/dicas-3355-windev-webdev-mobile-fazer.html https://youtu.be/e8yvn_5syGQ //Exemplo Looper manual no awp // no projeto global // Initializing awp_Exemplo ConfigureAWPContext(ctxDisk) //na pagina looper co awp , no codigo da procedure pagina garrMeu_looper_array is array of string DeclareAWPContext(garrMeu_looper_array) // initializing of btn looper (server) LOOP_exemplo.DeleteAll() FOR EACH sLinha OF garrMeu_looper_array LOOP_exemplo.AddLine(sLinha) END // no click do btn looper server - ajax ativado texto is string="Texto: "+TimeSys() LOOP_exemplo.AddLine(texto) ArrayAdd(garrMeu_looper_array,texto) // botao fechar CancelAWPContext(garrMeu_looper_array) PageDisplay(PAGE_looper_com_sessao)
|