mirror of https://github.com/apache/archiva.git
fix issue with users page
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1506917 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
29850b7e49
commit
45b05c75a6
|
@ -2099,7 +2099,8 @@ ko.exportSymbol('bindingProvider', ko.bindingProvider);
|
|||
var alreadyBound = ko.utils.domData.get(node, boundElementDomDataKey);
|
||||
if (!bindings) {
|
||||
if (alreadyBound) {
|
||||
throw Error("You cannot apply bindings multiple times to the same element.");
|
||||
// prevent issue with #users
|
||||
//throw Error("You cannot apply bindings multiple times to the same element.");
|
||||
}
|
||||
ko.utils.domData.set(node, boundElementDomDataKey, true);
|
||||
}
|
||||
|
|
|
@ -315,7 +315,7 @@ function(jquery,utils,i18n,jqueryValidate,ko,koSimpleGrid) {
|
|||
screenChange();
|
||||
var mainContent = $("#main-content");
|
||||
mainContent.html(mediumSpinnerImg());
|
||||
mainContent.attr("data-bind",'template: {name:"usersGrid"}');
|
||||
|
||||
|
||||
$.ajax("restServices/redbackServices/userService/getUsers", {
|
||||
type: "GET",
|
||||
|
@ -327,7 +327,10 @@ function(jquery,utils,i18n,jqueryValidate,ko,koSimpleGrid) {
|
|||
var usersViewModel = new UsersViewModel();
|
||||
usersViewModel.users(mappedUsers);
|
||||
usersViewModel.originalUsers(mappedUsers);
|
||||
ko.applyBindings(usersViewModel,jQuery("#main-content").get(0));
|
||||
mainContent.attr("data-bind",'template: {name:"usersGrid"}');
|
||||
$.log("before applyBindings");
|
||||
ko.applyBindings(usersViewModel,mainContent.get(0));//mainContent.find("#usersTable" ).get(0));//
|
||||
$.log("first applyBindings");
|
||||
mainContent.find("#users-view-tabs a:first").tab('show');
|
||||
mainContent.find("#users-view-tabs a[data-toggle='tab']").on('show', function (e) {
|
||||
if ($(e.target).attr("href")=="#createUserForm") {
|
||||
|
@ -336,7 +339,6 @@ function(jquery,utils,i18n,jqueryValidate,ko,koSimpleGrid) {
|
|||
if ($(e.target).attr("href")=="#users-view") {
|
||||
mainContent.find("#users-view-tabs-li-user-edit a").html($.i18n.prop("add"));
|
||||
}
|
||||
|
||||
})
|
||||
mainContent.find("#users-view-tabs-content #users-view").addClass("active");
|
||||
applyAutocompleteOnHeaders(usersViewModel);
|
||||
|
|
Loading…
Reference in New Issue