FSN#39090 ivm iFrame structuur, hamburger div aangepast zodat deze goed positioneert
svn path=/Website/branches/v2016.3/; revision=32488
This commit is contained in:
@@ -433,12 +433,14 @@ function showActions(event) // event op de mouseover van resultsettable
|
||||
var hambImg = $(this).find("div.hamburger").children()[0];
|
||||
|
||||
var trHeight = $(this).outerHeight();
|
||||
var pageHeight = $(window.parent).outerHeight();
|
||||
var outBounds = $(window.parent).outerHeight() < $(window).outerHeight();
|
||||
var pageHeight = outBounds ? $(window.parent).outerHeight() : $(window).outerHeight();
|
||||
var dropDownHeight = $actiondiv.outerHeight() - 5;
|
||||
var scrollCorr = 0;
|
||||
|
||||
outsideFrame = $(window.frameElement).offset();
|
||||
if (outsideFrame) scrollCorr = $(window.parent).scrollTop() - outsideFrame.top;
|
||||
if (outsideFrame && outBounds)
|
||||
scrollCorr = $(window.parent).scrollTop() - outsideFrame.top;
|
||||
|
||||
var trTop = $(this).offset().top;
|
||||
var pageBottom = pageHeight + scrollCorr;
|
||||
|
||||
@@ -732,7 +732,7 @@ function __rsProcessResultset(processParams) // processParams wordt blind aan al
|
||||
actionsDiv += val + this.actions[i].caption + "</span>";
|
||||
}
|
||||
hasInlineActions = aantalInline > 0;
|
||||
html += "\n<div id='allactions_" + ID + "' class='allactions' style='display:none' hasActionsCol='"+hasActionsCol+"' >" + actionsDiv + "</div>";
|
||||
html += "\n<div id='allactions_" + ID + "' class='allactions' style='display:none;z-index:13' hasActionsCol='"+hasActionsCol+"' >" + actionsDiv + "</div>";
|
||||
html += "\n<script type='text/javascript'>"
|
||||
html += "\n initActions('" + this.ID + "', "+useHamburger+")"
|
||||
html += "</script>"
|
||||
|
||||
Reference in New Issue
Block a user