Keeping labels when using a Split in a table
When using a Split to enhance mobile views, the header row is lost even on large screens. Is there a way to prevent this, or to force specific labels for each "column" of the split?
Alternatively, is there a way to Stack two columns without using Split and use a custom label for that?
2 Replies
There is not a way to add the labels back, no
if you want to add a label above each column, try
description('Description')
This adds a description under each row's value for that column, which will have to suffice for this case. Thanks.