Skip to content
Snippets Groups Projects
Commit e30aaece authored by juanf's avatar juanf
Browse files

SSDM-3733 : Exports form, ongoing work

SVN: 36705
parent e08321aa
No related branches found
No related tags found
No related merge requests found
...@@ -222,6 +222,7 @@ h1, h2, legend { ...@@ -222,6 +222,7 @@ h1, h2, legend {
.ui-fancytree { .ui-fancytree {
color: #777; color: #777;
background-color: transparent !important;
border: none !important; border: none !important;
} }
......
...@@ -799,8 +799,13 @@ var FormUtil = new function() { ...@@ -799,8 +799,13 @@ var FormUtil = new function() {
return link; return link;
} }
this.getBox = function() {
var $box = $("<div>", { style : "background-color:#f8f8f8; margin-right:10px; padding:10px; border-color: #e7e7e7; border-style: solid; border-width: 1px;"});
return $box;
}
this.getInfoBox = function(title, lines) { this.getInfoBox = function(title, lines) {
var $infoBox = $("<div>", { style : "background-color:#f8f8f8; margin:10px; padding:10px; border-color: #e7e7e7; border-style: solid; border-width: 1px;"}); var $infoBox = this.getBox();
$infoBox.append($("<span>", { class : 'glyphicon glyphicon-info-sign' })).append(" " + title); $infoBox.append($("<span>", { class : 'glyphicon glyphicon-info-sign' })).append(" " + title);
for(var lIdx = 0; lIdx < lines.length; lIdx++) { for(var lIdx = 0; lIdx < lines.length; lIdx++) {
......
...@@ -41,7 +41,8 @@ function ExportTreeView(exportTreeController, exportTreeModel) { ...@@ -41,7 +41,8 @@ function ExportTreeView(exportTreeController, exportTreeModel) {
"If you select a node, and you expand it, it means you want to export only that entity because the entities under it will be unselected by default." "If you select a node, and you expand it, it means you want to export only that entity because the entities under it will be unselected by default."
])); ]));
var $tree = $("<div>", { "id" : "exportsTree" }); var $tree = $("<div>", { "id" : "exportsTree" });
$formColumn.append($tree); $formColumn.append($("<br>"));
$formColumn.append(FormUtil.getBox().append($tree));
$container.append($form); $container.append($form);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment