On May 25, 2:28 pm, Greg <[EMAIL PROTECTED]> wrote: > I have three tables (Manufacturer, Collection, Style). I have 10 > manufacturers. Each manufacturer contains approx. 20 collection. > Each collection contains approx. 20 Styles. I was wondering if it's > possible when I'm adding styles I can select the manufacturer then my > collection (foreign key) field when drilled-down on shows only the > collections from the manufacturer I selected in the field above. I'm > thinking that this might require some javascript. > > Below are some of my tables > [snip] > > Thanks for any help
Greg, You're right that this will require some javascript, but you shouldn't have to write much on your own. There's a couple of examples at: <a href="http://www.b-list.org/weblog/2006/07/31/django-tips-simple- ajax-example-part-1">The B-List: Django tips: A simple AJAX example, part 1</a> <a href="http://www.b-list.org/weblog/2006/08/05/django-tips-simple- ajax-example-part-2">The B-List: Django tips: A simple AJAX example, part 2</a> The basics of how it would work, is use the Javascript to make a call to a view that outputs it however you'd like - XML, JSON or even straight "option" fields - then have it replace the innerHTML attribute on the DOM object in question. Again, depending on the ajax toolkit you choose, you shouldn't have much javascript to write, and the python side of the code should be fairly self-explanatory. -- Michael --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---