Skip to content

Commit

Permalink
Bugfix 5217 The last field box not fully visible in the Data Type editor
Browse files Browse the repository at this point in the history
  • Loading branch information
neexite committed Oct 23, 2015
1 parent c8ed6a9 commit f90a5f3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,12 @@ TabPanelBinding.prototype.unselect = function () {
*/
TabPanelBinding.prototype._invokeManagedRecursiveFlex = function () {

this.reflex ( true );
if (this.isAttached == true) {
this.reflex(true);
} else {
var tabpanels = UserInterface.getBinding(this.bindingElement.parentNode);
tabpanels.reflex();
}

/*
* There's an issue here with lazy panels waking up.
Expand Down
6 changes: 4 additions & 2 deletions Website/Composite/styles/default/tabboxes.less
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ ui|tabbox {
display: block;
overflow: hidden;

ui|tabbox { // usage: Edit Data Type -> Fields -> Tabs
padding-top: 39px;
ui|tabbox.tabsontop { // usage: Edit Data Type -> Fields -> Tabs
ui|tabs{
padding-top: 39px;
}
}
}

Expand Down

0 comments on commit f90a5f3

Please sign in to comment.