Monday, 1 February 2016

Change the source url of kendo ui pop up window .


Change the source url of kendo ui pop up window .
   var jq=   jQuery.noConflict();
        var direction = '@Url.Action("EditEquipmentPopUp", "Service")';
     
        var wnd = jq("#windowEquipment").data("kendoWindow");
        if (typeof wnd != 'undefined')
        {
            wnd.refresh({
                url: direction,
                data: { verno: verno, ServiceCode:serviceid}
            });
            wnd.center();
            wnd.open();
        }