If I have an observable array

foos = [{ name: "a" }, { name: "b" }, { name: "c" }]

on my viewmodel, I would like to render the following:

<ul>
  <li class="add-new-foo">Special stuff here</li>
  <li>a</li>
  <li>b</li>
  <li>c</li>
</ul>

I got pretty close with

<ul data-bind="template: { name: 'foo-template', foreach: foos }">
  <li class="add-new-foo">Special stuff here</li>
</ul>

<script id="foo-template" type="text/html">
  <li data-bind="text: name"></li>
</script>

But this ended up putting the .add-new-foo after the a, b, c.

Any ideas? In my case it's crucial to use Knockout foreach instead of jQuery templates {{each}}, because of the benefits mentioned in the Knockout docs.

link|improve this question

feedback

2 Answers

up vote 10 down vote accepted

Looks like it's going to be possible with the new containerless control flow and foreach binding in KO 1.3 2.0:

<ul>
    <li>Static item</li>
    <!-- ko foreach: products -->
        <li data-bind="text: name"></li>
    <!-- /ko -->
</ul>

See this post for details: http://blog.stevensanderson.com/2011/08/31/knockout-1-3-0-beta-available/

link|improve this answer
feedback

As there is not currently a way to tell the template binding where to render the template, I don't see a cleaner way to do it right now other than something like:

<ul data-bind="template: { name: 'foo-template', foreach: foos, templateOptions: { first: foos()[0]} }">
</ul>

<script id="foo-template" type="text/html">
    {{if $item.first === $data}}
    <li class="add-new-foo">Special stuff here</li>
    {{/if}}
    <li data-bind="text: name"></li>
</script>

So, we are passing the first item in your array as templateOptions and checking for if the item that we are dealing with in the template is indeed the first.

Sample here: http://jsfiddle.net/rniemeyer/XuXcr/

Also templateOptions was added after 1.12 KO, so you would need current code. More info about templateOptions here.

Hope this helps.

link|improve this answer
Looks, well, not terrible. Especially if I used template composition to isolate the "real template" from the proxy one. – Domenic Mar 21 '11 at 1:06
In theory land, I'd say the best solution would be to add a <ko:bind-location /> tag (or similar), such that that tag in particular gets replaced with the results of data binding instead of filled. Then the <ul /> could contain both a <li class="add-new-foo" /> and a <ko:bind-location /> with the data-bind attribute value that currently lives on the <ul />. Maybe I'll try to fork KO and add that some time... – Domenic Mar 21 '11 at 1:08
One way of doing is to use the sort function of the arrays. you can define your own sort function where you can always put the special stuff on top. – nEEbz Mar 21 '11 at 5:23
I was thinking about suggesting adding the first item to the array, but it seems like his first item is a different animal and not really something that he would want to get mixed in with his observableArray (anything that operates on items in the array would have to know that this one was different and you would have to filter it out when going back to the server). Might work for him though. – RP Niemeyer Mar 21 '11 at 13:15
Yup, the first one is really not part of the view model, but part of the view. – Domenic Mar 21 '11 at 14:58
feedback

Your Answer

 
or
required, but never shown

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