- Issue created by @svena
@svena, there is no such possibility. The only solution at the moment is to override the NodeOrderListBuilder with your own and add custom fields there.
Check these methods:
- \Drupal\nodeorder\NodeOrderListBuilder::buildRow
- \Drupal\nodeorder\NodeOrderListBuilder::buildHeader
There is an issue in the core that is not resolved yet β¨ 3rd-party should be able to alter the EntityListBuilder rows Needs work .
Technically, as a temporary solution, I can add hooks that will allow data modification.
- πΈπͺSweden svena
OK, but I am a frontender....this could be tricky for me.
I have tested this in buildrow() function.
$row['field_custom']['data']= [
'#field_custom' => $entity->label(),
];
I suppose I have to pick upp data first somehow.
I know about hooks in theming but not in modules I am afraid.
Just looking for a snippet...