0
votes
0answers
40 views

Return data from submitted form targeted to iframe

I have a web.py application with which i have implemented a form that uploads a file to my server via post with the target set as an iframe in my page. This works a charm but I want to be able to send ...
0
votes
1answer
219 views

python jquery web game [closed]

I'm trying to develop a web based text strategy game. The idea includes being in space, seeing a radar screen, and moving around, attacking other players, mining planets and so on. Current ...
0
votes
1answer
223 views

how to check/uncheck the checkboxes using jquery in python web.py

I am using web.py framework to develop a small webpage that displays all the records from database. Below is my code list_page.html $def with ( select_query ) <!DOCTYPE html PUBLIC "-//W3C//DTD ...
1
vote
5answers
3k views

JQuery refresh a div on submit

I wanted to refresh a div when a user submits a simple form. However I can't seem to find out why it's not working. (It's my first time using JQuery and Ajax) My Script: <script ...
0
votes
1answer
488 views

How to make web.py and jQuery UI work together?

Can jQuery UI be used with web.py? With jQuery and web.py, you can trigger events using jQuery or $$ (because $ is used by web.py for template variables) - but the same does not seem to be true with ...
0
votes
2answers
218 views

Rendering a page after jQuery POST

I have a problem with web.py. Basically the user clicks a button, which makes a POST request to the server. The POST request returns "render.edit()", which is short hand for rendering the "edit" ...
0
votes
1answer
653 views

Recieving variable from webpy POST via jQuery.ajax

In my webpy app I have a function: def POST (self): signal = web.input()['signal'] if signal == 'next': errMessage = self.cinstall.testConnection() print ...
0
votes
2answers
1k views

How to get data from jQuery script (web.py)?

I can't find any tutorial for jQuery + web.py. So I've got basic question on POST method. I've got jQuery script: <script> jQuery('#continue').click(function() { var command = ...
2
votes
1answer
561 views

Web.py | yield data via POST and AJAX (generator function)

I am using the web.py framework to set up my website. When I click a button, I want to POST data to the server and then send back data via a generator function / yield. Basically yield data as it's ...
4
votes
3answers
256 views

post a data to another URL by using .post() method in AJAX

I have created a web.py URL,and it provides only 2 text boxes(No submit button). When I type a number in the first text field it should post the value into another URL. By using AJAX post() I want ...
6
votes
2answers
2k views

jQuery/AJAX call with a timer

How can i implement the below code with jQuery/AJAX timer,(I have created 2 URL classes by using web.py.Here 1st URL will return a random number between 1 and 250.I have created an AJAX call in the ...
0
votes
0answers
571 views

error finding 'document' when attempting jquery/highcharts under web.py

Following the web.py tutorial, I created a simple site that renders a template. I then loaded the highcharts.js under /static and tried to run one of the highcharts examples that is included with the ...
0
votes
1answer
855 views

How do you form an array in a JSON object for a query string?

When sending an array in a JSON object in a query string, is each array element supposed to have the same key? For example, if I have this JSON object: {"sodas[]": ["coke", "sprite", "fanta"]} ...