[BangPypers] [JOBS] - Openings for good programmers in Python/Django/Flex/Postgres - @ Bangalore

2011-08-16 Thread Ramamurthy Swaminathan
Hi, I am looking for highly skilled Software Engineers having very good programming knowledge in Python/Django/Flex for company based out of Bangalore. The name of the company is "LogFire Technology Solutions Private Limited" ( http://www.logfire.com ). We work in the Supply Chain Management

Re: [BangPypers] two dropdowns dependents on each other

2011-08-16 Thread Kenneth Gonsalves
On Tue, 2011-08-16 at 15:45 +0530, Amit Sethi wrote: > > without ajax: > > > > 1. override __init__ on your modelform, pass the value of the first > > dropdown to __init__ and populate the second dropdown depending on > that > > value. If the value is None, the second dropdown will not be > populat

Re: [BangPypers] two dropdowns dependents on each other

2011-08-16 Thread Amit Sethi
[..] > without ajax: > > 1. override __init__ on your modelform, pass the value of the first > dropdown to __init__ and populate the second dropdown depending on that > value. If the value is None, the second dropdown will not be populated. > > 2. in your template, refresh the page when the value o

Re: [BangPypers] two dropdowns dependents on each other

2011-08-16 Thread Kenneth Gonsalves
On Tue, 2011-08-16 at 05:46 +, Asif Jamadar wrote: > I have two dropdowns one dropdown is dependent on other (Ex. > Country/State dropdowns) > > Now how can I implement this thing in django? > > I'm using modelform concept to display form which having two dropdowns > > Any sugtgestions? wi

Re: [BangPypers] how to write Operating System in python

2011-08-16 Thread Vishal
Hello, It might be tempting to write a desktop OS in Python...and it may also be a very good learning tool for an OS course. What really is needed is to have Python environment on smaller footprint systems...the 'embedded' part of computing universe. They are everywhere are rarely programmed in an

Re: [BangPypers] two dropdowns dependents on each other

2011-08-16 Thread Gora Mohanty
On Tue, Aug 16, 2011 at 11:16 AM, Asif Jamadar wrote: > I have two dropdowns one dropdown is dependent on other (Ex. Country/State > dropdowns) > > Now how can I implement this thing in django? [...] This is probably best done with a layer on top of Javascript: I would recommend jQuery. Dependin