Re: unchecked checkboxes not accessed through request.POST['check_name']

2008-11-17 Thread TH
As far as i remember according to the HTML specs the unchecked values are not sent with form post. So you can use some logic in your server side code to deduce the unchecked values. (Since you render them in the first place so may be you have a list of items from database) or if you really want

unchecked checkboxes not accessed through request.POST['check_name']

2008-11-16 Thread limas
hello all I am doing a project in Django. I want to create a list by clicking upon a link, it will open up a new window using javascript window.open() method. I have two tables for list. class Saved_list(models.Model): description=models.CharField(max_length=100)