Message 1 of 2
Custom Nesting Report - Help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
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>