Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a template in jquery and trying to display just the HTML with no data. I tried to bind 'null' instead of the json "data" but it gives error (Address is undefined). Below is code statement.

$("#empTemplate").tmpl(null).appendTo("#divEmp");

HTML Markup:

<table style="padding-left: 5px">
            <tr>
                <td>
                    <span>Name:</span>
                </td>
                <td>
                    <span>Employer:</span>
                </td>
                <tr>
                    <td>
                        <table>
                            <tr>
                                <td>
                                    <span>1</span>
                                </td>
                                <td>
                                    {{if Address.Length >=1}}
                                    <input type="text" value="${Address[0].State}" style="width: 50px" />
                                    {{else}}
                                    <input type="text" value="" style="width: 50px" />
                                    {{/if}}
                                </td>
                                <td>
                                    {{if Address.Length >=2}}
                                    <input type="text" value="${Address[1].State}" style="width: 50px" />
                                    {{else}}
                                    <input type="text" value="" style="width: 50px" />
                                    {{/if}}
                                </td>
                                <td>
                                    {{if Address.Length >=3}}
                                    <input type="text" value="${Address[2].State}" style="width: 50px" />
                                    {{else}}
                                    <input type="text" value="" style="width: 50px" />
                                    {{/if}}
                                </td>
                            </tr>
                        </table>
                    </td>
                </tr>
        </table>

Here is the Json as well:

{
    "Name": "Peter",
    "EmpId": "10",
    "Employer": [
        {
            "EmpName": "ABC",
            "EmpCity": "Jal",
            "Address": [
                {
                    "State": "MO",
                    "City": "St.Louis" 
                } 
            ] 
        } 
    ]
}
share|improve this question
Where are you intending for Address to be referenced from? – Dave Ward Feb 2 '11 at 17:13
Address is an Array that is part of the Employee object – user583126 Feb 2 '11 at 17:19

1 Answer

up vote 1 down vote accepted

use an empty object {address:[]}

$("#empTemplate").tmpl({address:[]}).appendTo("#divEmp");
share|improve this answer
@Luke: Do you mean to create an empty JSON object and bind it? – user583126 Feb 2 '11 at 17:15
yeah why not??? – Luke Feb 2 '11 at 17:20
Great! It works, but why is the template not able to handle arrays that are nulls? – user583126 Feb 2 '11 at 17:32
null is neither an object nor an array... null is null... – Luke Feb 2 '11 at 17:38
Well, in that case, how are the objects like Name, EmpId etc. getting handled? Even they are nulls, right? – user583126 Feb 2 '11 at 18:20
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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