PCHD#27790: Uitbreiding factuurscherm (flexkenmerken).

svn path=/Website/trunk/; revision=19739
This commit is contained in:
Maykel Geerdink
2013-11-06 13:17:33 +00:00
parent 14c007dd1d
commit ec8055af69
2 changed files with 7 additions and 11 deletions

View File

@@ -46,7 +46,7 @@ function hideAllInlineDetails(ID)
resizeWhenInIFrame();
}
function showInlineDetails(thisTD, strfnURL)
function showInlineDetails(thisTD, strfnURL, position)
{
var thisTR = thisTD.parentNode;
var thisTRid = thisTR.id;
@@ -65,7 +65,9 @@ function showInlineDetails(thisTD, strfnURL)
var theCell = newRow.insertCell(1);
theCell.innerHTML = L("lcl_shared_loading");
theCell.colSpan=thisTR.children.length - 2;
newRow.insertCell(1);
if (position == null) position = 3;
for (var i = 0; i < position - 2; i++)
newRow.insertCell(1);
var xurl = eval(strfnURL).call(null, thisTR);
$.ajaxSetup({ cache: true });
theCell.id = "tdinline";