cancel
Showing results for 
Search instead for 
Did you mean: 

Table cell action failing

Former Member
0 Kudos

Checked CBS log and no errors - but this warning:

… InputField Start_Time [onEnter]: Action and event are not compatible

… UIElementEventBinding onEnter: Parameter celm(IWDNodeElement) cannot be supplied

Action: RecalcDuration

Parameter: celm

Type: com.sap.tc.webdynpro.progmodel.api.IWDNodeElement

Method: onActionRecalcDuration

Param1: com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent

Param2: com.sap.tc.webdynpro.progmodel.api.IWDNodeElement celm

in wdDoModifyView:

IWDInputField editorStart = (IWDInputField) view.getElement("Start_Time");

if (editorStart != null) {

editorStart.mappingOfOnEnter().addSourceMapping

(

"nodeElement", /* name of (implicit) event parameter */

"celm" /* name of your action parameter */

);

}

So if the parameter for the action is type:

com.sap.tc.webdynpro.progmodel.api.IWDNodeElement

And the parameter for the method is exactly the same:

com.sap.tc.webdynpro.progmodel.api.IWDNodeElement

Why am I getting this?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

This warning is nonsense, just ignore it.

Armin

Answers (0)