OK, I tried to change the code of web2py_ajax.html BUT all function
code was commented out!! What is going on?
Why is all commented out? Is it commented out because all the code in
web2py_ajax.html is only for changing AJAX-settings? Like turning
asynchronisation off?
I built my app by using the form field "New simple application". After
that the web2py-system makes automatically a copy of the "welcome"-
app. And after that I never changed the web2py_ajax.html file!
Well, I commented "in" the "function ajax(u,s,t)".
Within this function there is the mentioned jQuery-Command:
jQuery.ajax({type: "POST", url: u, data: query, async: false, success:
function(msg) { if(t) { if(t==':eval') eval(msg); else jQuery("#" +
t).html(msg); } } });
So, finally it works now, however, I don't get why everything was
commented out.
Again, Thank you!
Regards
Phoboss