Re: How to call this function

2009-12-01 Thread David
Thanks Daniel. I am working in the way just as you said. On Dec 1, 10:21 am, Daniel Roseman wrote: > On Dec 1, 3:53 pm, David wrote: > > > > > > > Hello John and Daniel, thanks for your replies. Let me tell what I > > need in more details. > > > {% for value in data %} > >             >      

Re: How to call this function

2009-12-01 Thread Daniel Roseman
On Dec 1, 3:53 pm, David wrote: > Hello John and Daniel, thanks for your replies. Let me tell what I > need in more details. > > {% for value in data %} >                                {% ifequal all_domain 1 %} >                           class="odd" id="{{value.publisher}}"   > "showDomain

Re: How to call this function

2009-12-01 Thread David
Hello John and Daniel, thanks for your replies. Let me tell what I need in more details. {% for value in data %} ... {% endfor %} Here "showDomain(...)" is ajax. There are many lines of records on the webpage. If I click a line, then just below this line it shows doma

Re: How to call this function

2009-12-01 Thread Daniel Roseman
on. I would like this function > to be called in each iteration of the for-loop when all_domain == 1. > Anybody knows how to call this function? There are no events (click, > drag, mouseover, etc) here. > > Thanks so much. This is waving a massive red flag for me. The template loop is

Re: How to call this function

2009-12-01 Thread John M
  ... >                    {% endifequal %} >             > > > {% endfor %} > > "showDomain(...)" is a JavaScript function. I would like this function > to be called in each iteration of the for-loop when all_domain == 1. > Anybody knows

How to call this function

2009-11-30 Thread David
Hello, In my template file I have {% for value in data %} {% endfor %} "showDomain(...)" is a JavaScript function. I would like this function to be called in each iteration of the for-loop when all_domain == 1. Anybody knows how to call this function? There are no eve