Correction Pluggable Widgets documentation?

0
Hi,   I think this part in the pluggable widgets documentation (https://docs.mendix.com/apidocs-mxsdk/apidocs/client-apis-for-pluggable-widgets) needs to be updated: I think this part of the example: const actionOnFirstItem = this.props.myDataSource.myListAction(this.props.myDataSource.item[0]); actionOnFirstItem.execute(); should be: const actionOnFirstItem = this.props.myListAction(this.props.myDataSource.item[0]); actionOnFirstItem.execute(); Am I correct? I keep getting errors in typescript if I try the first part.   
asked
1 answers
0

Also, second question. I can’t get this to work with parameter objects. The moment I add a microflow with a parameter this fails and the canexecute boolean of the ActionValue is set to false… 

All the security of the microflow and the entity is fine, but for some reason it doesn’t work.

Anyone have an example where they implemented this that I can check out?

answered