cancel
Showing results for 
Search instead for 
Did you mean: 

How to edit Table feilds in Webdynpro for java

Former Member
0 Kudos

Hi Experts

I need edit table in webdynpro by clicking one button

can you please provide me the code how can i do it .

Thanks in Advance

Kumar

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hai Kiran ,

if the Table node contain property of cordinality as 1--n then

initailly one row will editable by default.

by action u get the record into table . and do modification .

i can tell follow above raghu code.

Former Member
0 Kudos

Hi,

Create an element for the node bound to the table.

Regards

Ayyapparaj

Former Member
0 Kudos

Hi,

You can do it, Just select Table cell as InputField and then you can go ahead changing your data and finally under your button implementation you can set the attribute which you have changed like

for(int i=0;i<wdContext.nodeXXX().size().i++)

//create an element ele

ele.setAttribute(wdContext.nodeXXX().getXXXelementAt(i).getAttribute())

//bind the ele (element) to node like wdContext.nodeXXX().add(ele);

Regards

Raghu