cancel
Showing results for 
Search instead for 
Did you mean: 

Another question about Inputfield can't used

Former Member
0 Kudos

Hello Friends :

Yesterday afternoon I ask a similar question about Inputfield can not be used in IE because it can't input any words!

Now I am using Web Dynpro to access a BAPI using adaptive RFC, i bind context from Componet Controller to Views and bind one element to Inputfield then i deploy the porject and rut it, the inputfield still can't used.

In wdDoInit() method ,i had add some code like this :

IPrivate<View>.I<nodeName>Element el =wdContext.node<nodeName>().create<nodeName>Element();

wdContext.node<nodeName>().addElement(el);

But the inputfield can't input words too!

Can you help me??

Thank You !

yours: zunxian.cheng

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

HI Zunxian,

Please assign point, if my solution helped you. It will be an encouragement for us

Regards

Fahad Hamsa

Answers (3)

Answers (3)

Former Member
0 Kudos

Thank You!!

Former Member
0 Kudos

Thank You !

Former Member
0 Kudos

HI,

For model nodes, we must create it's object and bind to the model node.

For example, if the model node name is ZjgetData_Input, then in component controller's wdDoinit(), do the following

ZjgetData_Input input=new ZjgetData_Input();

wdContext.nodeZjgetData_Input().bind(input);

Then the input filed bound from the variable under ZjgetData_Input node will appear as enabled.

PS: Close ur previous thread, if it solved the problem

Regards

Fahad Hamsa