aaloy wrote:
> I'm trying to make a dynamic lookup filter depending on the parameters
> that the user inputs on a web search.
>
> That is, I have three optional search fields and I wan't to be able to
> make a lookup search on my database withot having to code all the
> search options. Something like:
>
> search={}
> if searchcriteria1:
>     search['field1__exact']=searchcriteria1
> if searchcriteria2:
>     search['field2__contains']=searchcriteria2
> if searchcriteria3:
>     search['linkfield__id__pk']=searchcriteria3
>
> mytable.get_list(search)
>

Replace that last line with:

mytable.get_list(**search)

That should work if I'm not mistaking.

-janr


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to