[web2py] refresh div in a html page (web2py)

2012-12-18 Thread yn yn
 

Hi I am starting using web2py. I have a page web Test.html in view with a 
div: . On the other hand, I have a page web in the same folder: Test2.html 
with some code in python:

{{items = ['a', 'b', 'c']}}{{i=1}}table{{for item in items:}} 
tr
td/brSOME CONTENT/td
/tr{{i=i+1}}{{pass}}/table

How can I do to put the Test2.html content in the div IDtest? any example? 
Thanks. The goal is to learn how to insert a dynamic table in IDtest. I 
mean, I would refresh the IDtest content afther pushing a button for 
example

LAST TEST: I have tested 

script src={{=URL('static', 'js/jquery.js')}} 
type=text/javascript/script ... and then script 
type=text/javascriptjQuery(document).ready(function() { 
setInterval(function() {var url ='{{=URL('Test2.html')}}'; 
jQuery('#IDtest').load(url);alert(HELLO);}, 5000); }); I can see the HELLO 
evrey 5 seconds but nothing in div... any sugestions?

I can see HELLO every 5 seconds but nothing happens related to div... It 
seems the load doesn't work... Any solutions? I have read on the net that 
load works on the server side but I don't know how to translate that in 
web2py?

-- 





Re: [web2py] refresh div in a html page (web2py)

2012-12-18 Thread Carlos Costa
What you get when you access the test2.html url in the browser?
Maybe the url is wrong.
Try to inspect using firebug in error console.


2012/12/18 yn yn lkga...@gmail.com

 Hi I am starting using web2py. I have a page web Test.html in view with a
 div: . On the other hand, I have a page web in the same folder: Test2.html
 with some code in python:

 {{items = ['a', 'b', 'c']}}{{i=1}}table{{for item in items:}}
 tr
 td/brSOME CONTENT/td
 /tr{{i=i+1}}{{pass}}/table

 How can I do to put the Test2.html content in the div IDtest? any example?
 Thanks. The goal is to learn how to insert a dynamic table in IDtest. I
 mean, I would refresh the IDtest content afther pushing a button for
 example

 LAST TEST: I have tested

 script src={{=URL('static', 'js/jquery.js')}} 
 type=text/javascript/script ... and then script 
 type=text/javascriptjQuery(document).ready(function() { 
 setInterval(function() {var url ='{{=URL('Test2.html')}}'; 
 jQuery('#IDtest').load(url);alert(HELLO);}, 5000); }); I can see the HELLO 
 evrey 5 seconds but nothing in div... any sugestions?

 I can see HELLO every 5 seconds but nothing happens related to div... It
 seems the load doesn't work... Any solutions? I have read on the net that
 load works on the server side but I don't know how to translate that in
 web2py?

 --







-- 
Att.

Carlos J. Costa
Cientista da Computação
Esp. Gestão em Telecom

EL MELECH NEEMAN!
אָמֵן

--