Want to open SSRS report for edit using Report Builder 15 or below using JQuery function.
Using this JQuery Function :
tree.on('click', '.edit-report', function (event) {
var dataPath = $(this).attr('data-Path');
window.location = dataPath;
// Open the URL in a new window
//window.open(url);
event.preventDefault();
});
data-Path="@(string.Format("{0}/ReportBuilder/ReportBuilder_15_0_0_0.application?{1}", Settings.ReportServerUrl, item.Path.Replace(" ", "+")))"
It is redirecting to report Manager.