Uncheck checkboxes in association after deletion

https://fedorahosted.org/freeipa/ticket/1639
This commit is contained in:
Petr Vobornik
2011-08-18 13:46:44 +02:00
committed by Endi S. Dewata
parent 92780658b8
commit 4a72593893
4 changed files with 35 additions and 18 deletions

View File

@@ -457,6 +457,7 @@ IPA.association_table_widget = function (spec) {
that.load = function(result) {
that.values = result[that.name] || [];
that.reset();
that.unselect_all();
};
that.update = function() {
@@ -1107,6 +1108,7 @@ IPA.association_facet = function (spec) {
that.table.current_page = 1;
that.table.refresh();
that.table.unselect_all();
};
that.refresh = function() {

View File

@@ -86,6 +86,17 @@ IPA.search_facet = function(spec) {
that.table.refresh = function() {
that.refresh();
};
that.table.load = function(result) {
that.table.empty();
for (var i = 0; i<result.length; i++) {
var record = that.table.get_record(result[i], 0);
that.table.add_record(record);
}
that.table.unselect_all();
};
}
that.create_content = function(container) {
@@ -224,13 +235,7 @@ IPA.search_facet = function(spec) {
};
function load(result) {
that.table.empty();
for (var i = 0; i<result.length; i++) {
var record = that.table.get_record(result[i], 0);
that.table.add_record(record);
}
that.table.load(result);
}
that.load = spec.load || load;
@@ -245,8 +250,6 @@ IPA.search_facet = function(spec) {
that.search_refresh = function(entity){
$('input[type=checkbox]',that.table.thead).removeAttr("checked");
function on_success(data, text_status, xhr) {
that.load(data.result.result);

View File

@@ -1139,6 +1139,7 @@ IPA.sudorule_association_table_widget = function(spec) {
$.merge(that.values, external_values);
}
that.reset();
that.unselect_all();
};
return that;

View File

@@ -1263,16 +1263,11 @@ IPA.table_widget = function (spec) {
}).appendTo(th);
select_all_checkbox.change(function() {
var checked = select_all_checkbox.is(':checked');
select_all_checkbox.attr(
'title', checked ?
IPA.messages.search.unselect_all :
IPA.messages.search.select_all);
var checkboxes = $('input[name=select]', that.tbody).get();
for (var i=0; i<checkboxes.length; i++) {
checkboxes[i].checked = checked;
if(select_all_checkbox.is(':checked')) {
that.select_all();
} else {
that.unselect_all();
}
that.select_changed();
return false;
});
}
@@ -1449,6 +1444,21 @@ IPA.table_widget = function (spec) {
that.select_changed = function() {
};
that.select_all = function() {
$('input[name=select]', that.thead).attr('checked', true).
attr('title', IPA.messages.search.unselect_all);
$('input[name=select]', that.tbody).attr('checked', true);
that.select_changed();
};
that.unselect_all = function() {
$('input[name=select]', that.thead).attr('checked', false).
attr('title', IPA.messages.search.select_all);
$('input[name=select]', that.tbody).attr('checked', false);
that.select_changed();
};
that.empty = function() {
that.tbody.empty();
};
@@ -1464,6 +1474,7 @@ IPA.table_widget = function (spec) {
var record = that.get_record(result, i);
that.add_record(record);
}
that.unselect_all();
};
that.save = function() {