문제

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?

도움이 되었습니까?

해결책

I would suggest using

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

directly in the button handler.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top