Questions tagged [web2py]

web2py stands out as an innovative and free full-stack web framework that is crafted using the Python programming language.

Is it possible for the upload form submission to wait until the file processing is finished?

Is it possible for the form submission to wait until the file processing is complete? I am currently using web2py and its sqlform to upload a video file. As the file is being uploaded, it is also being converted to flv format. The progress of both uploadi ...

Convert Ajax null value to NoneType in web2py

Every time I save information on a page, an AJAX request is sent with all the necessary data to be stored in the database. The format of this data looks similar to this example: {type: "cover", title: "test", description: null, tags: null} However, when ...

When using web2py, how does JavaScript determine when all LOAD() components have finished loading?

I am currently facing a challenge in web2py where I need to load multiple separate forms onto a single web page using the {{=LOAD(...)}} function. My main concern is how I can trigger a JavaScript function once all of these forms have completed loading i ...

What is causing the failure of this Web2Py ajax call to retrieve the variable value?

Here is an excerpt from my Web2Py view code: {{for candidate in rows:}} <div class="well col-sm-12"> <button type="button" name="up_button" onclick="ajax('{{=URL('default', 'arrow_button_callback')}}', [& ...

The newly created database is not appearing in the web2py appadmin interface

I've been working on a new blog database design and I'm looking to conduct some tests within web2py's administrative interface. First step was creating a new web2py application named newblog through the admin interface. After that, I craft ...

SQLFORM that does not include a submit button

Currently working with the web2py framework, I am faced with a challenge in creating a SQLFORM without a submit button. The issue arises from having multiple forms on the page, some of which share common fields, making it impossible to use SQLFORM.factor ...