Hello,
How can I make Add search condition clickable after opening a screen with RelatedEntities and adding filter caption?
Example code:
RelatedEntitiesBuilder builder = relatedEntitiesSupport.builder(this);
String filterCaption = "Custom Filter Caption";
Screen customerBrowser = builder
.withEntityClass(Order.class)
.withProperty("customer")
.withSelectedEntities(ordersTable.getSelected())
.withConfigurationName(filterCaption)
.build();
customerBrowser.show();
Right now I get this
![]()
Thanks,
Ilias