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

How would I go about using a Jquery dialog to confirm whether they want to delete a row from a a list within a KnockoutJs template?

As I see it, the ko demos show a template which renders each row in a grid. The delete button calls the viewModel.remove() function passing in the object of the row to delete. Inside the remove() function, this.Gifts.Remove() is called with the data passed into the function as a parameter.

My problem is that I want to display a Jquery dialog to ask for confirmation of whether a row should be deleted. JQuery dialog works on the basis of a setup function which sets up the dialog and its delete function beforehand.

When I click on my delete link in the template, it opens the dialog ok, but how do I pass the template data into the dialog delete function, as it is now completely decoupled from the template mechanism?

share|improve this question

1 Answer

up vote 16 down vote accepted

I am assuming that the dialog is from jQuery UI. If so, then you your remove would look something like this:

removeItem: function(item) {
    $( "#dialog-confirm" ).dialog({
        resizable: false,
        height:140,
        modal: true,
        buttons: {
            "Delete item": function() {
                $(this).dialog("close");
                viewModel.items.remove(item);
            },
            Cancel: function() {
                $(this).dialog("close");
            }
        }
    });
}

So, the "Delete item" button would close the dialog and also remove your item from your observableArray.

Working sample here: http://jsfiddle.net/rniemeyer/CLxsV/

Edit: better sample using bindings here: http://jsfiddle.net/rniemeyer/WpnTU/

share|improve this answer
Perfect! Thanks for the help. – jaffa Apr 8 '11 at 8:43
Is there any way to test that the dialog method was called with the correct parameters? It would be to be able to test the interactions between the methods on the model and the jQuery UI. For example, to ensure that the buttons were bound correctly, that modal was true, etc. Is there a good way to do this? Thanks – Erick T Sep 13 '11 at 0:10
I would suggest better use custom knockout binding like in this sample: stackoverflow.com/questions/7436160/… – VikciaR Feb 5 '12 at 7:47
@VikciaR I agree! – RP Niemeyer Feb 5 '12 at 13:38
@VikciaR updated this question and the one that you linked with a version that uses bindings both for the wire up and opening/closing. – RP Niemeyer Feb 5 '12 at 16:24
show 3 more comments

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.