On Thu, Feb 24, 2011 at 11:51 AM, raulna <[email protected]> wrote: > Sorry, maybe, I have explained wrong, I not need not add a searchitem, > what I need is that the Flexigrid be built initially querying the > database by a hidden parameter that I pass from the template. For > example, if I have two Flexigrid and I select a movie(row) from the > first, second Flexigrid data could be loaded with the authors of this > movie, by the id that javascript pass from the template to controller > to build the query. >
Doesn't work using url dispatch of parameters? Like calling /fetch/movieid The call would be made by flexigrid as /fetch/movieid?param1=x¶m2=y and if you have a controller method declared as: def fetch(movieid, param1, param2) you should get the fetch called with movieid passed as argument and then the GET parameters. -- You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/turbogears?hl=en.

