Question

I've got problem with delete action after clicking button in MessageBox. I have something like this:

fn: function showResultText(btn) {
                                if (btn == 'ok') {
                                    rec.set('IsActive', false);

                                }

                            }

And I need to put here some redirect to open PartialView. I was trying with return link with "../Shop/Delete/' + id + '" but its not working. Is there anything in normal MVC view like actionLink?

Was it helpful?

Solution

I would suggest using

 window.location = "../Shop/Delete/' + id + '";

directly in the button handler.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top