I cannot seem to get hold of the parent varible from the child template, does anyone know how?

Current code:

 <li class="ui-parent-field" >
            <b>${ Name }</b> 
            {{if Options ===null}}
            | <span data-field-name="${ Name }" data-field-type="${ Type }"></span> 
            {{/if}}
            <br/> 
            ${ Description }
            {{if Options !==null}}
            <div style="clear:both;">
            <ul class="ui-child-list">
                {{each Options}}
                    <li class="ui-child-field">
                        ${ Name } : ${ Value } | 
                    <span data-field-type="${ Type }" data-field-name="${ Name }"></span>
//NOTE should be:
<span data-field-type="${ Parent.Type }" data-field-name="${ Parent.Name }"></span>                    </li>
                {{/each}}
            </ul>
            </div>
           {{/if}}        
        </li>

This is a very crude example but I am basically throwing out some info into the view using jquery templates, I have a parent span item which contains Name + Type, then I am throwing out the child elements of this object if they exist, I want to access the Type property from the parent inside the each loop.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

You can access the object that the entire template is bound to using $data. So, you would use something like:

<span data-field-type="${ $data.Type }" data-field-name="${ $data.Name }"></span>  
link|improve this answer
thanks, for some reason I could not find this in the jquery docs or it was not so clear to me, do you have any references? – Haroon May 20 '11 at 13:24
It is not a lot, but you can go here: api.jquery.com/template-tag-equal and look for the heading The $item and $data Template Variables – RP Niemeyer May 20 '11 at 13:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.