Injection of table action in controller

Hi

Injecting of a table Action in controller gave the following.

                                <action id="processNotices" caption="Envois/Relances" icon="font-icon:MAIL_FORWARD"/>
                            </actions>
    @Inject
    private ActionsAwareDialogFacet.DialogAction processNotices;

Not sure what to do with that, because it is not a standard BaseAction

And IDEA seems ok with that.

platform 7.2.17

image

Regards
Mihcaël

Hello!

Thank you for reporting the problem! I’ve create a task: STUDIO-9355.

The correct injection is:

@Named("tableId.processNotices")
private BaseAction tableIdProcessNotices;

Ok thanks @Pinyazhin

Michael