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

How is it possible to make knockout data-bind work on dynamically generated elements? For example, I insert a simple html select menu inside a div and want to populate options using the knockout options binding. This is what my code looks like:

$('#menu').html('<select name="list" data-bind="options: listItems"></select>');

but this method doesn't work. Any ideas?

share|improve this question
are you adding this after you have done your ko.applyBindings(yourVMHere); – PlTaylor Jun 16 '12 at 21:34

4 Answers

up vote 7 down vote accepted

If you add this element on the fly after you have bound your viewmodel it will not be in the viewmodel and won't update. You can do one of two things. Add the element to the DOM and re-bind it by calling ko.applyBindings(); again or you can add the list to the DOM from the beginning and leave the options collection in your viewmodel empty. Knockout won't render it until you add elements to options on the fly later.

share|improve this answer

You can add another observable to your viewmodel using myViewModel[newObservable] = ko.observable('')

After that, call again to ko.applyBindings.

Here is a simple page where I add paragraphs dinamically and the new viewmodel and the bindings work flawlessly. Copypaste into a html file and run it in your browser.

<!DOCTYPE HTML>
<html>
<head>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
    <script src="http://ajax.aspnetcdn.com/ajax/knockout/knockout-2.2.1.js"></script>
</head>
<body>
<div id="placeholder">
    <p data-bind="text: paragraph0"></p>
</div>

<a id="add" href="#">Add paragraph</a>

<script type="text/javascript">

    // myViewModel starts only with one observable
    var myViewModel = {
        paragraph0: ko.observable('First')
    };

    var count = 0;

    $(document).ready(function() {
        ko.applyBindings(myViewModel);

        $('#add').click(function() {
            // Add a new paragraph and make the binding
            addParagraph();
            // Re-apply!
            ko.applyBindings(myViewModel);          
            return false;   
        });
    });

    function addParagraph() {
        count++;
        var newObservableName = 'paragraph' + count;
        $('<p data-bind="text: ' + newObservableName + '"></p>').appendTo('#placeholder');

        // Here is where the magic happens
        myViewModel[newObservableName] = ko.observable('');
        myViewModel[newObservableName](Math.random());

        // You can also test it in the console typing
        // myViewModel.paragraphXXX('a random text')
    }
</script>

</body>
</html>
share|improve this answer
Calling applyBindings more than once is not a good idea. – gunteman May 2 at 21:37
@gunteman..why not? – Leon yesterday

Can you show us some more of your code? There's nothing wrong with what you showed us.

Here's a fiddle of it working with the exact line of code you provided: http://jsfiddle.net/LExe6/2/

share|improve this answer
he is adding html after binding. jsfiddle.net/LExe6/4 That is the problem. – emre nevayeshirazi Jun 27 '12 at 21:58

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.