Custom Nesting Report - Help

Custom Nesting Report - Help

MattyB92
Explorer Explorer
184 Views
1 Reply
Message 1 of 2

Custom Nesting Report - Help

MattyB92
Explorer
Explorer

Good morning,

 

I'm stuck with trying to hide columns within the Sheet Table of the HTML report for Inventor Nesting 2024.

I have tried the following

data-sheet-table-hidden-columns="PlateArea,InventoryId"

data-sheet-table-properties-hidden-categories="PlateArea,InventoryId"

 

I am wondering if I am able to hide columns within this section or it's a lost cause?


Below is my custom report so far:

<!DOCTYPE html>
<html>
	<head>
		<meta	http-equiv="Content-Type"
				content="text/html;charset=utf-8" />

		<title>Nesting report</title>
		
		<style>
			@media print {
				div.report-section-header button {
					display: none;
				}
				div.report-source-parts {
					break-after: page;
				}
				div.report-inventory {
					break-after: page;
				}
				div.report-sheet-list {
					break-after: page;
				}
				div.report-sheet-list .report-section {
					break-after: page;
				}
				div.report-sheet-table {
					break-after: page;
				}
				div.report-part-summaries {
					break-after: page;
				}
				div.report-excluded-parts {
					break-after: page;
				}
			}
		</style>
	</head>
	<body>
		<div	class="report-header"
				data-collapsible="false"
				data-show-plates="false"
				data-show-bar="true"></div>

		<!--<div	class="report-source-parts"
				data-hidden-columns="Subassembly,Assembly,Job,PartPerimeter,PartArea,ForceMirror,Grain90,Grain180,Grain270,HighVolume,Orientation,MirrorString,Deviation,Increment,Priority,Date,Filter,ToolConstraint,Comment,GrainControl"
				></div>-->

			<div	class="report-sheet-list"
				data-collapsible="false"
				data-sheets-collapsible="false"
				data-sheet-properties-collapsible="false"
				data-sheet-properties-column-count="4"
				data-sheet-properties-shown-categories="Plate"
				data-show-item-table="false"
				data-part-table-collapsible="false"
				data-show-parts-table="false"
				data-part-table-hidden-columns="Assembly,Subassembly,Area,TotalArea,WeightedNestedCost,WeightedSheetCost,MaterialNestedCost"
				></div>


			
			<div 	class="report-sheet-table"
				data-collapsible="false"
				data-report-sheet-table-collapsible="false"
				data-sheet-table-hidden-columns="PlateArea,InventoryId"
				></div>
			

		<script id="report-include" type="text/javascript" src="/bundle.js"></script>
	</body>
</html>

 

 

0 Likes
185 Views
1 Reply
Reply (1)
Message 2 of 2

phillip.doup
Autodesk
Autodesk

Hello @MattyB92 ,

 

All tables share the same "data-xxx" attributes, so you really just need to use "data-hidden-columns" to control column visibility.

 

There should be a template in your installation that has a thorough set of examples and documentation in it. It explains how the "data-xxx" attributes are used to control things.


 Phillip Doup
 Architect - Fusion Platform UI
0 Likes