Replies: 1 comment
-
Currently it's not possible, but was/is on my radar. The problem with shared data is that you need to define it once, and then link it to all the tables. But once you link it to all the tables, you need to actually limit output by using JavaScript. That means I need to somehow provide an easy way to filter the table based on some conditions. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there a way to use one data source for multiple tables?
I.e. I have one large data table, and want to show it multiple times without increasing HTML file size.
My scenario:
$users = Get-ADUser
)$users
data table, e.g.:Using the following code, each New-HtmlTable saves its own copy of data into HTML file.
So, in my scenario described above, the resulting HTML file grows very fast when I add additional tabs
Beta Was this translation helpful? Give feedback.
All reactions