layout fix if content area is too wide
This commit is contained in:
parent
c02f80d996
commit
a14a3bb0de
|
@ -1028,15 +1028,21 @@ class accountContainer {
|
||||||
}
|
}
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
echo '<div id="lamVerticalTabs" class="ui-tabs ui-widget ui-widget-content ui-corner-bottom ui-helper-clearfix">';
|
echo '<div id="lamVerticalTabs" class="ui-tabs ui-widget ui-widget-content ui-corner-bottom ui-helper-clearfix">';
|
||||||
// tab menu
|
echo '<table>';
|
||||||
$this->printModuleTabs();
|
echo '<tr><td>';
|
||||||
echo "<div class=\"lamEqualHeightTabContent ui-tabs-panel ui-widget-content ui-corner-bottom\">\n";
|
// tab menu
|
||||||
// content area
|
$this->printModuleTabs();
|
||||||
// display html-code from modules
|
echo '</td><td>';
|
||||||
$return = call_user_func(array($this->module[$this->order[$this->current_page]], 'display_html_'.$this->subpage));
|
echo "<div class=\"lamEqualHeightTabContent ui-tabs-panel ui-widget-content ui-corner-bottom\">\n";
|
||||||
$y = 5000;
|
// content area
|
||||||
parseHtml($this->order[$this->current_page], $return, array(), false, $y, $this->type);
|
// display html-code from modules
|
||||||
echo "</div>\n";
|
$return = call_user_func(array($this->module[$this->order[$this->current_page]], 'display_html_'.$this->subpage));
|
||||||
|
$y = 5000;
|
||||||
|
parseHtml($this->order[$this->current_page], $return, array(), false, $y, $this->type);
|
||||||
|
echo "</div>\n";
|
||||||
|
echo '</td>';
|
||||||
|
echo '</tr>';
|
||||||
|
echo '</table>';
|
||||||
echo "</div>\n";
|
echo "</div>\n";
|
||||||
echo "</td></tr>\n";
|
echo "</td></tr>\n";
|
||||||
// Display rest of html-page
|
// Display rest of html-page
|
||||||
|
@ -1417,8 +1423,9 @@ class accountContainer {
|
||||||
$x=1;
|
$x=1;
|
||||||
echo '<ul class="lamEqualHeightTabContent ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all">';
|
echo '<ul class="lamEqualHeightTabContent ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all">';
|
||||||
// Loop for each module
|
// Loop for each module
|
||||||
for ($i=0; $i<count($this->order); $i++ ) {
|
for ($i = 0; $i < count($this->order); $i++) {
|
||||||
$buttonStatus = $this->module[$this->order[$i]]->getButtonStatus();
|
$buttonStatus = $this->module[$this->order[$i]]->getButtonStatus();
|
||||||
|
$alias = $this->module[$this->order[$i]]->get_alias();
|
||||||
// skip hidden buttons
|
// skip hidden buttons
|
||||||
if ($buttonStatus == 'hidden') continue;
|
if ($buttonStatus == 'hidden') continue;
|
||||||
$buttonImage = $this->module[$this->order[$i]]->getIcon();
|
$buttonImage = $this->module[$this->order[$i]]->getIcon();
|
||||||
|
@ -1428,7 +1435,7 @@ class accountContainer {
|
||||||
}
|
}
|
||||||
// print button
|
// print button
|
||||||
echo '<li class="ui-state-default ui-corner-left' . $activatedClass . '">';
|
echo '<li class="ui-state-default ui-corner-left' . $activatedClass . '">';
|
||||||
$buttonStyle = 'background-color:transparent;;border:0px solid;';
|
$buttonStyle = 'background-color:transparent;;border:0px solid;min-width: 200px;';
|
||||||
echo "<button style=\"" . $buttonStyle . "\" name=\"form_main_".$this->order[$i]."\"";
|
echo "<button style=\"" . $buttonStyle . "\" name=\"form_main_".$this->order[$i]."\"";
|
||||||
echo " tabindex=$x";
|
echo " tabindex=$x";
|
||||||
if ($buttonStatus == 'disabled') echo " disabled";
|
if ($buttonStatus == 'disabled') echo " disabled";
|
||||||
|
@ -1439,7 +1446,7 @@ class accountContainer {
|
||||||
}
|
}
|
||||||
echo "<img height=32 width=32 class=\"align-middle\" style=\"padding: 3px;\" alt=\"\" src=\"$buttonImage\"> ";
|
echo "<img height=32 width=32 class=\"align-middle\" style=\"padding: 3px;\" alt=\"\" src=\"$buttonImage\"> ";
|
||||||
}
|
}
|
||||||
echo $this->module[$this->order[$i]]->get_alias();
|
echo $alias;
|
||||||
echo " </button>\n";
|
echo " </button>\n";
|
||||||
echo "</li>\n";
|
echo "</li>\n";
|
||||||
$x++;
|
$x++;
|
||||||
|
|
Loading…
Reference in New Issue