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?