cancel
Showing results for 
Search instead for 
Did you mean: 

disabled input field

Former Member
0 Kudos

hi

my input field is disabled when I bound the input field to a value attribute under a value node. Can anyone suggest me what I am doing wrong.

regards,

reuben

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

hi reuben

when u bind a value attribute under a value node which has a cardinality of 0-n or 0-1 to the input field u should first create a node element and bind it to the node.

For more details about this issue, check the following post which talks about your problem.

regards

Ravi

Former Member
0 Kudos

iprivate<viewname>.i<node element> input=wdcontext.create<nodeelement>();

wdcontext.node<nodename>.bind(input);

This should solve the problem that you have.

While using RFC ( don't know in the case of installation above WAS SP9) you might have the same problem that even after the bind you have the field disabled. There after binding the model element to the node. Set the attribute(say of type String)with a new type Object i.e.

<RFC name> input;

wdcontext.node<nodename>.bind(input);

input.set<attribute>(new String());

Hope this would help.

Regards

Noufal

Answers (0)