dialog scrolling table

Tables on the dialog page need to have the scrolling set but should not resize with the main window, since their window is a JQuery UI dialog.
This commit is contained in:
Adam Young
2011-06-03 11:33:32 -04:00
committed by Endi Sukma Dewata
parent 403ed477b5
commit 4080a03051
6 changed files with 29 additions and 20 deletions

View File

@@ -394,6 +394,9 @@ IPA.adder_dialog = function (spec) {
height: '151px'
});
that.available_table.resize = function(){
};
var columns = that.columns.values;
that.available_table.set_columns(columns);
@@ -405,6 +408,9 @@ IPA.adder_dialog = function (spec) {
height: '151px'
});
that.selected_table.resize = function(){
};
that.selected_table.set_columns(columns);
that.selected_table.init();