This commit is contained in:
Garrett 2020-12-08 04:55:57 +00:00
parent 9237571bcf
commit 065fbdd430
3 changed files with 11 additions and 22 deletions

View File

@ -33,6 +33,8 @@ Contents
**Changes introduced in 0.3.12
[Fix] Corrected nested insert size as displayed in "Available Templates" box
[Fix] Template port ID add/remove field not refreshing when shown for different connectable partitions
[Enhance] When configuring template port ID, show last port ID in long abreviated list
**Changes introduced in 0.3.11
[Enhance] Added ability to create inserts with enclosure partitions

View File

@ -1689,25 +1689,6 @@ function handleScrollLock(){
function buildInsertParent(RUSize, hUnits, vUnits, encLayoutX, encLayoutY, nestedInsert, parentHUnits, parentVUnits, parentEncLayoutX, parentEncLayoutY){
var variables = getVariables();
/*
var totalVUnits = RUSize * 2;
var flexRow = hUnits/24;
var flexCol = vUnits/totalVUnits;
console.log('hUnits: '+hUnits);
console.log('parentHUnits: '+parentHUnits);
console.log('parentEncLayoutX: '+parentEncLayoutX);
console.log('nestedInsert: '+nestedInsert);
if(nestedInsert) {
parentFlexWidth = (parentHUnits / 24) / parentEncLayoutX;
parentFlexHeight = (parentVUnits / (RUSize * 2)) / parentEncLayoutY;
flexRow = parentFlexWidth * flexRow;
flexCol = parentFlexHeight * flexCol;
}
*/
if(nestedInsert) {
parentFlexWidth = (parentHUnits / 24) / parentEncLayoutX;
parentFlexHeight = (parentVUnits / (RUSize * 2)) / parentEncLayoutY;
@ -2398,6 +2379,7 @@ $( document ).ready(function() {
$(document).data('portNameFormatAction', $(invoker).data('portNameAction'));
setPortNameInput();
handlePortNameFieldAddRemoveButtons();
updatePortNameDisplay();
setPortNameFieldFocus();

View File

@ -23,15 +23,17 @@ if($_SERVER['REQUEST_METHOD'] == 'POST'){
$portTotal = $data['portTotal'];
$portNameListLong = '';
$portNameListShort = '';
$portNameListShortCount = 3;
$portNameListLongCount = 5;
for($x=0; $x<$portTotal; $x++) {
$portName = $qls->App->generatePortName($portNameFormat, $x, $portTotal);
if($x < 3) {
if($x < $portNameListShortCount) {
$portNameListShort .= $portName.', ';
}
if($x < 10) {
if($x < $portNameListLongCount) {
$portNameListLong .= $portName.'<br>';
}
@ -43,7 +45,10 @@ if($_SERVER['REQUEST_METHOD'] == 'POST'){
}
$portNameListShort .= '...';
$portNameListLong .= '...';
//$portNameListLong .= '...';
if($portTotal > $portNameListLongCount) {
$portNameListLong .= '...<br>'.$portNameLast;
}
$portRange = $portNameFirst.'&#8209;'.$portNameLast;
$validate->returnData['success']['portNameListLong'] = $portNameListLong;