diff options
Diffstat (limited to 'install/ui/aci.js')
-rw-r--r-- | install/ui/aci.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/install/ui/aci.js b/install/ui/aci.js index 953116c3..b2e5e19e 100644 --- a/install/ui/aci.js +++ b/install/ui/aci.js @@ -473,13 +473,17 @@ IPA.attributes_widget = function(spec) { that.create = function(container) { that.container = container; + var attr_container = $('<div/>', { + 'class': 'aci-attribute-table-container' + }).appendTo(container); + that.table = $('<table/>', { id:id, 'class':'search-table aci-attribute-table scrollable' }). append('<thead/>'). append('<tbody/>'). - appendTo(container); + appendTo(attr_container); var tr = $('<tr></tr>').appendTo($('thead', that.table)); |