I have the following custom grid row button and (using Angular) code:
text: "Assign",
click: function (e) {
var tr = $(e.target).closest("tr");
var data = this.dataItem(tr);
authMaintServices.setSelectedRole(data);
$window.location = '#/roleAssignments';
}
In at least IE11, the $window.location works but in Google Chrome it goes nowhere. Does anyone know how I can get this to work properly in both IE and Chrome? I have tried the angular $location.path(...) and that does not work in either browser.
Thanks for the help.