Since trying to use version 1.4.5, I have a problem with the Render parameter for “New-UDTableColumn” command which shows me for the column that uses “Render” the message “Undefined” for every line.
the code worked fine on version 1.4.4, but I wanted to benefit from the fix of the loading of the table during a search
i have modified CSV file for add “link” column
i have modified dashboard script with “link” colulmn.
Now, the column “link” display only line of link text of CSV, but not hypertext link.
I have tested with New-UDButton but it’s same result.
it’s like the render parameter doesn’t work
i have modified CSV file for add “link” column
i have modified dashboard script with “link” colulmn.
Now, the column “link” display only line of link text of CSV, but not hypertext link.
I have tested with New-UDButton but it’s same result.
it’s like the render parameter doesn’t work
I had this issue with a table earlier. The issue I found was that the variable contained more information than was being looked for by the table. So everything returned undefined. Using the same variable I used | select for the data I wanted and it fixed the issue.
so I would say try:
New-UDTableColumn -Property link -title link -Render { New-UDLink -Url ($EventData.link | select link) -Text ‘link’}
This is an example but I would look at what properties are in $EVENTDATA.LINK make sure you select the right thing. Or maybe its under another array in there.