Re: many to many field problem

2008-03-30 Thread didia lim
Hi evert, the transparency is inside class tableSlot, when i'm looping tableSlot, it works fine... but when i add the columnsetup or querysetup, i got the error.. maybe my query is wrong? :( - Original Message From: Evert Rol <[EMAIL PROTECTED]> To: django-users@googlegroups.com Sent:

Re: many to many field problem

2008-03-29 Thread didia lim
hi this is my class for columnsetup and querysetup.. thanks a lot for your help class columnSetup(models.Model): name=models.CharField("Name",max_length=50) width =models.IntegerField("Width",max_length=3) align

Re: many to many field problem

2008-03-28 Thread didia lim
thanks so much evert really appreciate it.. it works now i do like this ds = DigitalSignage.objects.get(pk=ds_id)#Digital Signage config & setting setting = ds.setting textslots = ds.textslot_set.all() slots = ds.slot_set.all()

Re: javascript in django

2008-03-28 Thread didia lim
hi baxter, how can JS get the texfield by ID.. is there any documentation or example? sorry i'm still new in django - Original Message From: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> To: Django users Sent: Friday, March 28, 2008 7:45:57 AM Subject: Re:

Re: many to many field problem

2008-03-28 Thread didia lim
hi Evert, thanks for reply, but i don't quite understand :( sorry i'm newbie here First my models.py is like this class DigitalSignage(models.Model): DS_ID = integerField() class tableSlot(models.Model): ds_id =models.ManyToManyField(DigitalSignage) class columnSetup(models.Model):

Re: Python using django framework

2008-03-23 Thread didia lim
Hi...actually i want to do some schedulling things for my new project... I'm newbie here... My schedulling function is.. to automatically start/wake up the computer at 7am and automatically shut down the computer at 9pm... do you have any suggestion.. or is there any module that i can use from