In my experience it seems that there is a lot of duplication of html in server and client side templates. By client side I mean something like Jquery templates, and by server-side I'm mean using server-side variables with html.

In the code below the foreach loop gets executed on every page load and is used to create a list of items. Notice that it surrounds a block of html with variable placeholders that are used for dynamic values.

Below the foreach loop we have a Jquery template with the exact same html structure, the only thing that differs is the variable syntax.

Is there way to "merge" it so I don't have to repeat the same html markup structure in both cases? It just seems wrong having to use the exact same html block in both cases.

ex

   <h1>Portfolio's</h1>
            <ul id="portfolioList" class="portfolio">
                <% foreach (Portfolio p in Portfolios)
                   {  %>        
                        <li>
                            <span class="delete">[X] </span>
                            <a href="/portfolioDetails.aspx?p=<%=p.PortfolioId %>"><%=p.Name %></a>
                        </li>
                <% } %>
            </ul>

            <!-- portfolio template -->
            <script id="portfolioTemplate" type="text/x-jquery-tmpl">
                <li>
                    <span class="delete">[X] </span>
                    <a href="/portfolioDetails.aspx?p=${PortfolioId}">${Name}</a>
                </li>
            </script>  
link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

As I understand, your js-template is used later, to render additional portfolios, recived with AJAX?

If so, you can either - get rid of js-tmpl and return with ajax prerendered html

-OR-

Get rid of prerendering on serverside and use only js for this. The second is probably 'cleaner' - and if you dont want to make one more ajax request at start, you can allways render initial data into json (just like template), and only run js rendering func on it.

<h1>Portfolio's</h1>
<ul id="portfolioList" class="portfolio">
</ul>

<!-- portfolio template -->
<script id="portfolioTemplate" type="text/x-jquery-tmpl">
    <li>
        <span class="delete">[X] </span>
        <a href="/portfolioDetails.aspx?p=${PortfolioId}">${Name}</a>
    </li>
</script>

<!-- initial rendering -->    
<script>
    (function(){
        var initData = [
          <% foreach (Portfolio p in Portfolios) { %>
            { PorfolioId : <%=p.PortfolioId%>, Name : "<%=p.Name%>" },
          <% } %>
        ];
        $("#portfolioTemplate").tmpl(initData).appendTo("#portfolioList");
    }());
</script>

Probably you should make some adjusments, but should work without problems.

link|improve this answer
Could you give an example on your technique for avoiding the additional ajax request for the second option? – chobo Jan 8 at 1:49
Ive added an example. – Adam Jurczyk Jan 8 at 11:04
That actually works pretty well, thanks! – chobo Jan 8 at 18:43
Just remember that a bot (from google for example) probably won't see a thing since they usually do not execute javascript. – Stuck Feb 16 at 7:20
I've run into the same thing. The solution Adam provides looks good, but the tmpl plugin is no longer being maintained. See: github.com/jquery/jquery-tmpl#readme – lostdorje Feb 23 at 8:24
show 2 more comments
feedback

Using nested templates or snippets.

link|improve this answer
Could you provide some more details? I'm not sure what you mean – chobo Jan 8 at 1:47
feedback

Your Answer

 
or
required, but never shown

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