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 XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>List Page</title>
</head>
<body>
<form method="POST" action="/retrieve">
<table border="1">
<tr>
<td>Select</td><td>Column_two</td><td>Column_three</td><td>Column_four</td><td>Column_five</td>
</tr>
$for r in select_query:
<tr>
<td><p align = "center"><input type="checkbox" id="$r.id" value="" name="$r.id"/></p></td>
<td>$r.Listing_Name</td><td>$r.Address</td><td>$r.Pincode</td><td>$r.Phone</td>
</tr>
</table>
<br/>
<p><button id="submit" name="select_unselect">Select All/Unselect All</button></p>
<p><button id="submit" name="submit">Retrieve</button></p>
</form>
So from the above html page the results from the database will appear in the form of table.
Actually i am trying to implement checking/unchecking the checkboxes with jquery in python.
Below is my index.py code
import web
render = web.template.render('templates/')
db = web.database(dbn='mysql', db='Browser_Date', user='root', pw='redhat')
urls = ('/', 'Listpage',)
app = web.application(urls, globals())
class Listpage:
def GET(self):
select_query = db.select('File_upload')
return render.list_page(select_query)
def POST(self):
i = web.input(groups = {})
ids = i.keys()
........
........
web.header('Content-Type','text/csv')
web.header('Content-disposition', 'attachment; filename=csv_file.csv')
return csv_file.getvalue()
if __name__ == "__main__":
web.internalerror = web.debugerror
app.run()
The concept is the web page(html displayed above) will display the records from database, and based on selection of the records by checking/unchecking and after clicking button retrieve, a csv file will be generated with the selected records on the page
So now i am trying to check/uncheck all the checkboxes at a time using jquery , but dont know how to start and where to write the jquery code in the above html code, i googled on jquery but its really confusing, so approached SO.
Basically i am newbie in web developing and no idea on implementing/using jquery, can anyone please let me know on how to implement the checking/unchecking the checkboxes functionality in the above mentioned code/html file? so that i can extend the code easily further