Display Barcodes in Perspective Table

This one is a bit tricky but I want to display a Barcode under the Part Number that has the value of the Part Number.

I don't know if this is possible but can I do this some how? I know it's possible with reports but I haven't seen any way to do this with tables.

I see there is barcode components but I'd like the barcodes as an element of the tables if possible

That is what cell render views are for. Make a small view that can receive your barcode string in view.params.value and place the barcode component in that view, bound to that parameter. Then set the table column to render mode == view and provide that view path.

2 Likes

This worked!


So I have my barcode here and the table loads in data from a Query, the Part Number columns header from the database is actually material but I can't seem to figure out how to load in the material value for each column into the barcode


I'm assuming it has something to do with the viewParams but I don't know what to bind it to so that I can get the unique material id for each row

1 Like

Never mind I figured it out!

This post solved it for me with these params being passed

rowData
rowIndex
columnIndex
row
column
value
1 Like